pub enum BrokerState {
Disabled = 0,
Active = 1,
Standby = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for BrokerState
impl Clone for BrokerState
Source§fn clone(&self) -> BrokerState
fn clone(&self) -> BrokerState
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 BrokerState
impl Debug for BrokerState
Source§impl PartialEq for BrokerState
impl PartialEq for BrokerState
Source§impl TryFrom<u8> for BrokerState
impl TryFrom<u8> for BrokerState
impl Copy for BrokerState
impl StructuralPartialEq for BrokerState
Auto Trait Implementations§
impl Freeze for BrokerState
impl RefUnwindSafe for BrokerState
impl Send for BrokerState
impl Sync for BrokerState
impl Unpin for BrokerState
impl UnwindSafe for BrokerState
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