pub struct OrderedCollection {
pub object_props: ObjectProperties,
pub collection_props: CollectionProperties,
/* private fields */
}
Expand description
A subtype of Collection
in which members of the logical collection are assumed to always be
strictly ordered.
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 OrderedCollection
impl Clone for OrderedCollection
Source§fn clone(&self) -> OrderedCollection
fn clone(&self) -> OrderedCollection
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 OrderedCollection
impl CollectionExt for OrderedCollection
fn props(&self) -> &CollectionProperties
fn props_mut(&mut self) -> &mut CollectionProperties
Source§impl Debug for OrderedCollection
impl Debug for OrderedCollection
Source§impl Default for OrderedCollection
impl Default for OrderedCollection
Source§fn default() -> OrderedCollection
fn default() -> OrderedCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderedCollection
impl<'de> Deserialize<'de> for OrderedCollection
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 OrderedCollection
impl ObjectExt for OrderedCollection
fn props(&self) -> &ObjectProperties
fn props_mut(&mut self) -> &mut ObjectProperties
Source§impl Serialize for OrderedCollection
impl Serialize for OrderedCollection
impl Collection for OrderedCollection
impl Object for OrderedCollection
Auto Trait Implementations§
impl Freeze for OrderedCollection
impl RefUnwindSafe for OrderedCollection
impl Send for OrderedCollection
impl Sync for OrderedCollection
impl Unpin for OrderedCollection
impl UnwindSafe for OrderedCollection
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