pub struct UnorderedCollection {
pub object_props: ObjectProperties,
pub collection_props: CollectionProperties,
/* private fields */
}
Expand description
The default Collection
type.
Fields§
§object_props: ObjectProperties
Adds all valid object properties to this struct
collection_props: CollectionProperties
Adds all valid collection properties to this struct
Trait Implementations§
Source§impl Clone for UnorderedCollection
impl Clone for UnorderedCollection
Source§fn clone(&self) -> UnorderedCollection
fn clone(&self) -> UnorderedCollection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl CollectionExt for UnorderedCollection
impl CollectionExt for UnorderedCollection
fn props(&self) -> &CollectionProperties
fn props_mut(&mut self) -> &mut CollectionProperties
Source§impl Debug for UnorderedCollection
impl Debug for UnorderedCollection
Source§impl Default for UnorderedCollection
impl Default for UnorderedCollection
Source§fn default() -> UnorderedCollection
fn default() -> UnorderedCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnorderedCollection
impl<'de> Deserialize<'de> for UnorderedCollection
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
Source§impl ObjectExt for UnorderedCollection
impl ObjectExt for UnorderedCollection
fn props(&self) -> &ObjectProperties
fn props_mut(&mut self) -> &mut ObjectProperties
Source§impl Serialize for UnorderedCollection
impl Serialize for UnorderedCollection
impl Collection for UnorderedCollection
impl Object for UnorderedCollection
Auto Trait Implementations§
impl Freeze for UnorderedCollection
impl RefUnwindSafe for UnorderedCollection
impl Send for UnorderedCollection
impl Sync for UnorderedCollection
impl Unpin for UnorderedCollection
impl UnwindSafe for UnorderedCollection
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