pub struct WepAuthenticator {
    pub key: WepKey,
}Expand description
WEP authenticator.
Fields§
§key: WepKeyWEP key used to authenticate.
Trait Implementations§
Source§impl Clone for WepAuthenticator
 
impl Clone for WepAuthenticator
Source§fn clone(&self) -> WepAuthenticator
 
fn clone(&self) -> WepAuthenticator
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 WepAuthenticator
 
impl Debug for WepAuthenticator
Source§impl From<WepAuthenticator> for Protocol
 
impl From<WepAuthenticator> for Protocol
Source§fn from(_: WepAuthenticator) -> Self
 
fn from(_: WepAuthenticator) -> Self
Converts to this type from the input type.
Source§impl From<WepAuthenticator> for SecurityAuthenticator
 
impl From<WepAuthenticator> for SecurityAuthenticator
Source§fn from(authenticator: WepAuthenticator) -> Self
 
fn from(authenticator: WepAuthenticator) -> Self
Converts to this type from the input type.
Source§impl From<WepAuthenticator> for WepCredentials
 
impl From<WepAuthenticator> for WepCredentials
Source§fn from(authenticator: WepAuthenticator) -> Self
 
fn from(authenticator: WepAuthenticator) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WepAuthenticator
 
impl PartialEq for WepAuthenticator
Source§impl TryFrom<WepCredentials> for WepAuthenticator
 
impl TryFrom<WepCredentials> for WepAuthenticator
impl Eq for WepAuthenticator
impl StructuralPartialEq for WepAuthenticator
Auto Trait Implementations§
impl Freeze for WepAuthenticator
impl RefUnwindSafe for WepAuthenticator
impl Send for WepAuthenticator
impl Sync for WepAuthenticator
impl Unpin for WepAuthenticator
impl UnwindSafe for WepAuthenticator
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