pub enum CollectionKind {
List,
Set,
Map,
Tuple,
}Expand description
Collection kind enumeration
Variants§
Trait Implementations§
Source§impl Clone for CollectionKind
impl Clone for CollectionKind
Source§fn clone(&self) -> CollectionKind
fn clone(&self) -> CollectionKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CollectionKind
impl Debug for CollectionKind
Source§impl<'de> Deserialize<'de> for CollectionKind
impl<'de> Deserialize<'de> for CollectionKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CollectionKind
impl RefUnwindSafe for CollectionKind
impl Send for CollectionKind
impl Sync for CollectionKind
impl Unpin for CollectionKind
impl UnsafeUnpin for CollectionKind
impl UnwindSafe for CollectionKind
Blanket Implementations§
impl<T> Allocation for T
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