pub struct ParsedStruct {
pub name: Ident,
pub fields: Vec<ParsedField>,
pub crate_path: String,
}Expand description
Parsed struct information.
Fields§
§name: Ident§fields: Vec<ParsedField>§crate_path: StringAuto Trait Implementations§
impl Freeze for ParsedStruct
impl RefUnwindSafe for ParsedStruct
impl !Send for ParsedStruct
impl !Sync for ParsedStruct
impl Unpin for ParsedStruct
impl UnsafeUnpin for ParsedStruct
impl UnwindSafe for ParsedStruct
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