pub enum ArbitrationScheme {
RoundRobin,
Priority,
WeightedRoundRobin,
}Variants§
Trait Implementations§
Source§impl Clone for ArbitrationScheme
impl Clone for ArbitrationScheme
Source§fn clone(&self) -> ArbitrationScheme
fn clone(&self) -> ArbitrationScheme
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 ArbitrationScheme
impl Debug for ArbitrationScheme
Source§impl<'de> Deserialize<'de> for ArbitrationScheme
impl<'de> Deserialize<'de> for ArbitrationScheme
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 PartialEq for ArbitrationScheme
impl PartialEq for ArbitrationScheme
Source§impl Serialize for ArbitrationScheme
impl Serialize for ArbitrationScheme
impl Eq for ArbitrationScheme
impl StructuralPartialEq for ArbitrationScheme
Auto Trait Implementations§
impl Freeze for ArbitrationScheme
impl RefUnwindSafe for ArbitrationScheme
impl Send for ArbitrationScheme
impl Sync for ArbitrationScheme
impl Unpin for ArbitrationScheme
impl UnwindSafe for ArbitrationScheme
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