pub struct DerivedType {
pub ident: Ident,
pub b_name: Literal,
pub target_type: PathData,
pub variant_ident: Ident,
}
Expand description
Represents a derived type used by DynamicData
Fields§
§ident: Ident
Identifier of the derived type.
b_name: Literal
Name of the derived type as byte string literal.
target_type: PathData
The actual target type of this derived type information.
variant_ident: Ident
Name of the variant used for this derived type information.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DerivedType
impl RefUnwindSafe for DerivedType
impl !Send for DerivedType
impl !Sync for DerivedType
impl Unpin for DerivedType
impl UnwindSafe for DerivedType
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