pub enum HostConnectionControl {
DisconnectNode {
connection_key: String,
},
}Expand description
Connection fencing is control, not delivery. The key must identify an exact session, so delayed control requests cannot close a replacement connection.
Variants§
Trait Implementations§
Source§impl Clone for HostConnectionControl
impl Clone for HostConnectionControl
Source§fn clone(&self) -> HostConnectionControl
fn clone(&self) -> HostConnectionControl
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 HostConnectionControl
impl Debug for HostConnectionControl
Source§impl<'de> Deserialize<'de> for HostConnectionControl
impl<'de> Deserialize<'de> for HostConnectionControl
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
Auto Trait Implementations§
impl Freeze for HostConnectionControl
impl RefUnwindSafe for HostConnectionControl
impl Send for HostConnectionControl
impl Sync for HostConnectionControl
impl Unpin for HostConnectionControl
impl UnsafeUnpin for HostConnectionControl
impl UnwindSafe for HostConnectionControl
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