pub struct DerivedType {
pub ident: Ident,
pub b_name: Literal,
pub target_type: IdentPath,
pub variant_ident: Ident,
}Expand description
Represents a derived type used by DynamicType.
Fields§
§ident: IdentIdentifier of the derived type.
b_name: LiteralName of the derived type as byte string literal.
target_type: IdentPathThe actual target type of this derived type information.
variant_ident: IdentName 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