pub struct SocketAuth {
pub auth: String,
pub channel_data: Option<String>,
pub shared_secret: Option<String>,
}
Expand description
Authentication data for socket connections
Fields§
§auth: String
§channel_data: Option<String>
Trait Implementations§
Source§impl Debug for SocketAuth
impl Debug for SocketAuth
Auto Trait Implementations§
impl Freeze for SocketAuth
impl RefUnwindSafe for SocketAuth
impl Send for SocketAuth
impl Sync for SocketAuth
impl Unpin for SocketAuth
impl UnwindSafe for SocketAuth
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