pub struct LowestFirst<O: Ord>(/* private fields */);Expand description
Trait Implementations§
Source§impl<O: Clone + Ord> Clone for LowestFirst<O>
impl<O: Clone + Ord> Clone for LowestFirst<O>
Source§fn clone(&self) -> LowestFirst<O>
fn clone(&self) -> LowestFirst<O>
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<O: Ord + ConstDefault> ConstDefault for LowestFirst<O>
Available on crate feature const-default only.
impl<O: Ord + ConstDefault> ConstDefault for LowestFirst<O>
Available on crate feature
const-default only.Source§impl<O: Default + Ord> Default for LowestFirst<O>
impl<O: Default + Ord> Default for LowestFirst<O>
Source§fn default() -> LowestFirst<O>
fn default() -> LowestFirst<O>
Returns the “default value” for a type. Read more
Source§impl<'de, O> Deserialize<'de> for LowestFirst<O>where
O: Deserialize<'de> + Ord,
impl<'de, O> Deserialize<'de> for LowestFirst<O>where
O: Deserialize<'de> + Ord,
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<O: Ord> From<O> for LowestFirst<O>
impl<O: Ord> From<O> for LowestFirst<O>
Source§impl<O: Ord> Priority for LowestFirst<O>
impl<O: Ord> Priority for LowestFirst<O>
Source§impl<O> Serialize for LowestFirst<O>
impl<O> Serialize for LowestFirst<O>
impl<O: Copy + Ord> Copy for LowestFirst<O>
Auto Trait Implementations§
impl<O> Freeze for LowestFirst<O>where
O: Freeze,
impl<O> RefUnwindSafe for LowestFirst<O>where
O: RefUnwindSafe,
impl<O> Send for LowestFirst<O>where
O: Send,
impl<O> Sync for LowestFirst<O>where
O: Sync,
impl<O> Unpin for LowestFirst<O>where
O: Unpin,
impl<O> UnsafeUnpin for LowestFirst<O>where
O: UnsafeUnpin,
impl<O> UnwindSafe for LowestFirst<O>where
O: UnwindSafe,
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