pub enum Container {
Array(Box<Type>),
Struct(StructTypes),
Dict(Base, Box<Type>),
Variant,
}
Expand description
Containers for other types
Variants§
Implementations§
Trait Implementations§
source§impl PartialEq<Container> for Container
impl PartialEq<Container> for Container
impl Eq for Container
impl StructuralEq for Container
impl StructuralPartialEq for Container
Auto Trait Implementations§
impl RefUnwindSafe for Container
impl Send for Container
impl Sync for Container
impl Unpin for Container
impl UnwindSafe for Container
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