pub enum FtlCommand {
HMAC,
Connect {
channel_id: String,
hashed_hmac_payload: String,
},
Dot,
Attribute {
key: String,
value: String,
},
Ping {
channel_id: String,
},
Disconnect,
}
Variants§
Trait Implementations§
Source§impl Debug for FtlCommand
impl Debug for FtlCommand
Source§impl FromStr for FtlCommand
impl FromStr for FtlCommand
Source§impl PartialEq for FtlCommand
impl PartialEq for FtlCommand
impl StructuralPartialEq for FtlCommand
Auto Trait Implementations§
impl Freeze for FtlCommand
impl RefUnwindSafe for FtlCommand
impl Send for FtlCommand
impl Sync for FtlCommand
impl Unpin for FtlCommand
impl UnwindSafe for FtlCommand
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