#[repr(u32)]pub enum CipherSuiteType {
Show 16 variants
UseGroup = 0,
Wep40 = 1,
Tkip = 2,
Reserved3 = 3,
Ccmp128 = 4,
Wep104 = 5,
BipCmac128 = 6,
GroupAddressedNotAllowed = 7,
Gcmp128 = 8,
Gcmp256 = 9,
Ccmp256 = 10,
BipGmac128 = 11,
BipGmac256 = 12,
BipCmac256 = 13,
Reserved14To255 = 14,
UnknownOrdinal_(u32),
}Expand description
IEEE Std 802.11-2016, 9.4.2.25.2
Variants§
UseGroup = 0
Wep40 = 1
Tkip = 2
Reserved3 = 3
Ccmp128 = 4
Wep104 = 5
BipCmac128 = 6
GroupAddressedNotAllowed = 7
Gcmp128 = 8
Gcmp256 = 9
Ccmp256 = 10
BipGmac128 = 11
BipGmac256 = 12
BipCmac256 = 13
Reserved14To255 = 14
UnknownOrdinal_(u32)
Trait Implementations§
Source§impl Clone for CipherSuiteType
impl Clone for CipherSuiteType
Source§fn clone(&self) -> CipherSuiteType
fn clone(&self) -> CipherSuiteType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CipherSuiteType
impl Debug for CipherSuiteType
Source§impl<'a, ___E> Encode<CipherSuiteType, ___E> for &'a CipherSuiteTypewhere
___E: ?Sized,
impl<'a, ___E> Encode<CipherSuiteType, ___E> for &'a CipherSuiteTypewhere
___E: ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<CipherSuiteType>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<CipherSuiteType>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl<___E> Encode<CipherSuiteType, ___E> for CipherSuiteTypewhere
___E: ?Sized,
impl<___E> Encode<CipherSuiteType, ___E> for CipherSuiteTypewhere
___E: ?Sized,
Source§fn encode(
self,
encoder: &mut ___E,
out: &mut MaybeUninit<CipherSuiteType>,
_: (),
) -> Result<(), EncodeError>
fn encode( self, encoder: &mut ___E, out: &mut MaybeUninit<CipherSuiteType>, _: (), ) -> Result<(), EncodeError>
Encodes this value into an encoder and output.
§const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
const COPY_OPTIMIZATION: CopyOptimization<Self, W> = _
Source§impl From<CipherSuiteType> for CipherSuiteType
impl From<CipherSuiteType> for CipherSuiteType
Source§fn from(wire: CipherSuiteType) -> CipherSuiteType
fn from(wire: CipherSuiteType) -> CipherSuiteType
Converts to this type from the input type.
Source§impl From<CipherSuiteType> for CipherSuiteType
impl From<CipherSuiteType> for CipherSuiteType
Source§fn from(natural: CipherSuiteType) -> CipherSuiteType
fn from(natural: CipherSuiteType) -> CipherSuiteType
Converts to this type from the input type.
Source§impl From<u32> for CipherSuiteType
impl From<u32> for CipherSuiteType
Source§fn from(value: u32) -> CipherSuiteType
fn from(value: u32) -> CipherSuiteType
Converts to this type from the input type.
Source§impl FromWire<CipherSuiteType> for CipherSuiteType
impl FromWire<CipherSuiteType> for CipherSuiteType
Source§fn from_wire(wire: CipherSuiteType) -> CipherSuiteType
fn from_wire(wire: CipherSuiteType) -> CipherSuiteType
Converts the given owned value to this type.
§const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
const COPY_OPTIMIZATION: CopyOptimization<W, Self> = _
Source§impl FromWireRef<CipherSuiteType> for CipherSuiteType
impl FromWireRef<CipherSuiteType> for CipherSuiteType
Source§fn from_wire_ref(wire: &CipherSuiteType) -> CipherSuiteType
fn from_wire_ref(wire: &CipherSuiteType) -> CipherSuiteType
Converts the given reference to this type.
Source§impl Hash for CipherSuiteType
impl Hash for CipherSuiteType
Source§impl Ord for CipherSuiteType
impl Ord for CipherSuiteType
Source§fn cmp(&self, other: &CipherSuiteType) -> Ordering
fn cmp(&self, other: &CipherSuiteType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CipherSuiteType
impl PartialEq for CipherSuiteType
Source§fn eq(&self, other: &CipherSuiteType) -> bool
fn eq(&self, other: &CipherSuiteType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CipherSuiteType
impl PartialOrd for CipherSuiteType
impl Copy for CipherSuiteType
impl Eq for CipherSuiteType
impl StructuralPartialEq for CipherSuiteType
Auto Trait Implementations§
impl Freeze for CipherSuiteType
impl RefUnwindSafe for CipherSuiteType
impl Send for CipherSuiteType
impl Sync for CipherSuiteType
impl Unpin for CipherSuiteType
impl UnsafeUnpin for CipherSuiteType
impl UnwindSafe for CipherSuiteType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
§fn from_wire_option(wire: Box<'_, W>) -> Option<T>
fn from_wire_option(wire: Box<'_, W>) -> Option<T>
Converts the given owned value to an option of this type.
§impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
§fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
Converts the given reference to an option of this type.
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]