pub enum FtlResponse {
HMAC {
hmac_payload: String,
},
Success,
Connect {
udp_port: u16,
},
Pong,
}
Variants§
Trait Implementations§
Source§impl Debug for FtlResponse
impl Debug for FtlResponse
Auto Trait Implementations§
impl Freeze for FtlResponse
impl RefUnwindSafe for FtlResponse
impl Send for FtlResponse
impl Sync for FtlResponse
impl Unpin for FtlResponse
impl UnwindSafe for FtlResponse
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