pub struct Field<'a> {
pub name: &'a str,
pub offset: MaybeUninhabited<usize>,
pub ty: &'a str,
}
Expand description
Descriptor of the shallow layout of a field.
Fields§
§name: &'a str
The field’s name.
offset: MaybeUninhabited<usize>
The field’s byte offset, iff the field is inhabited.
ty: &'a str
The fully-qualified name of the field’s type. This is used as a key
inside TypeLayoutGraph::tys
to find the field’s type’s layout by
its TypeLayoutInfo::name
.
Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for Field<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Field<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> Ord for Field<'a>
impl<'a> Ord for Field<'a>
Source§impl<'a> PartialOrd for Field<'a>
impl<'a> PartialOrd for Field<'a>
impl<'a> Copy for Field<'a>
impl<'a> Eq for Field<'a>
impl<'a> StructuralPartialEq for Field<'a>
Auto Trait Implementations§
impl<'a> Freeze for Field<'a>
impl<'a> RefUnwindSafe for Field<'a>
impl<'a> Send for Field<'a>
impl<'a> Sync for Field<'a>
impl<'a> Unpin for Field<'a>
impl<'a> UnwindSafe for Field<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more