pub enum CableMethod {
New,
Connect,
}Expand description
Method for caBLE WebSocket tunnel protocol.
Variants§
New
Request from the authenticator to establish a new tunnel. This needs to be allocated a routing ID.
Connect
Request from the initiator to connect to an existing tunnel.
Trait Implementations§
Source§impl Clone for CableMethod
impl Clone for CableMethod
Source§fn clone(&self) -> CableMethod
fn clone(&self) -> CableMethod
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 CableMethod
impl Debug for CableMethod
Source§impl PartialEq for CableMethod
impl PartialEq for CableMethod
impl Copy for CableMethod
impl Eq for CableMethod
impl StructuralPartialEq for CableMethod
Auto Trait Implementations§
impl Freeze for CableMethod
impl RefUnwindSafe for CableMethod
impl Send for CableMethod
impl Sync for CableMethod
impl Unpin for CableMethod
impl UnwindSafe for CableMethod
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