Struct FieldInfo
struct FieldInfo<'a> { ... }
Relevant information about a field for which visibility can be determined using
ParseCallbacks::field_visibility.
Fields
type_name: &'a strThe name of the type.
field_name: &'a strThe name of the field.
field_type_name: Option<&'a str>The name of the type of the field.
Implementations
impl<'a> Debug for FieldInfo<'a>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<'a> Freeze for FieldInfo<'a>
impl<'a> RefUnwindSafe for FieldInfo<'a>
impl<'a> Send for FieldInfo<'a>
impl<'a> Sync for FieldInfo<'a>
impl<'a> Unpin for FieldInfo<'a>
impl<'a> UnwindSafe for FieldInfo<'a>
impl<T> Any for FieldInfo<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for FieldInfo<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for FieldInfo<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for FieldInfo<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for FieldInfo<'a>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for FieldInfo<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for FieldInfo<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>