pub struct OrderDetails { /* private fields */ }Expand description
Represents a unique ordering of services with a positional value.
Typically used to define display or priority order.
Trait Implementations§
Source§impl Clone for OrderDetails
impl Clone for OrderDetails
Source§fn clone(&self) -> OrderDetails
fn clone(&self) -> OrderDetails
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 Debug for OrderDetails
impl Debug for OrderDetails
Source§impl Default for OrderDetails
impl Default for OrderDetails
Source§fn default() -> OrderDetails
fn default() -> OrderDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderDetails
impl<'de> Deserialize<'de> for OrderDetails
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 Hash for OrderDetails
impl Hash for OrderDetails
Source§impl Ord for OrderDetails
impl Ord for OrderDetails
Source§fn cmp(&self, other: &OrderDetails) -> Ordering
fn cmp(&self, other: &OrderDetails) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OrderDetails
impl PartialEq for OrderDetails
Source§impl PartialOrd for OrderDetails
impl PartialOrd for OrderDetails
Source§impl Serialize for OrderDetails
impl Serialize for OrderDetails
impl Copy for OrderDetails
impl Eq for OrderDetails
impl StructuralPartialEq for OrderDetails
Auto Trait Implementations§
impl Freeze for OrderDetails
impl RefUnwindSafe for OrderDetails
impl Send for OrderDetails
impl Sync for OrderDetails
impl Unpin for OrderDetails
impl UnwindSafe for OrderDetails
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