pub enum StopBinding {
Unbound,
Bound {
successor: SuccessorDescriptor,
stop_command_hash: LogHash,
},
}Variants§
Trait Implementations§
Source§impl Clone for StopBinding
impl Clone for StopBinding
Source§fn clone(&self) -> StopBinding
fn clone(&self) -> StopBinding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StopBinding
impl Debug for StopBinding
Source§impl<'de> Deserialize<'de> for StopBinding
impl<'de> Deserialize<'de> for StopBinding
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
impl Eq for StopBinding
Source§impl PartialEq for StopBinding
impl PartialEq for StopBinding
Source§impl Serialize for StopBinding
impl Serialize for StopBinding
impl StructuralPartialEq for StopBinding
Auto Trait Implementations§
impl Freeze for StopBinding
impl RefUnwindSafe for StopBinding
impl Send for StopBinding
impl Sync for StopBinding
impl Unpin for StopBinding
impl UnsafeUnpin for StopBinding
impl UnwindSafe for StopBinding
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