pub struct TypeName {
pub rust_name: &'static str,
pub serde_name: &'static str,
}Expand description
Names associated with a Rust type and its Serde container.
Fields§
§rust_name: &'static strThe fully qualified Rust type name, including generic arguments.
serde_name: &'static strThe Serde deserialize name after container rename rules are applied.
Trait Implementations§
impl Eq for TypeName
impl StructuralPartialEq for TypeName
Auto Trait Implementations§
impl Freeze for TypeName
impl RefUnwindSafe for TypeName
impl Send for TypeName
impl Sync for TypeName
impl Unpin for TypeName
impl UnsafeUnpin for TypeName
impl UnwindSafe for TypeName
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