pub struct StructInfo<'a> {
pub struct_name: &'a str,
pub fields: Vec<FieldInfo<'a>>,
}
Fields§
§struct_name: &'a str
§fields: Vec<FieldInfo<'a>>
Implementations§
Source§impl<'a> StructInfo<'a>
impl<'a> StructInfo<'a>
Trait Implementations§
Source§impl<'a> Clone for StructInfo<'a>
impl<'a> Clone for StructInfo<'a>
Source§fn clone(&self) -> StructInfo<'a>
fn clone(&self) -> StructInfo<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for StructInfo<'a>
impl<'a> RefUnwindSafe for StructInfo<'a>
impl<'a> Send for StructInfo<'a>
impl<'a> Sync for StructInfo<'a>
impl<'a> Unpin for StructInfo<'a>
impl<'a> UnwindSafe for StructInfo<'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