#[non_exhaustive]#[repr(u32)]pub enum EServerMode {
eServerModeInvalid = 0,
eServerModeNoAuthentication = 1,
eServerModeAuthentication = 2,
eServerModeAuthenticationAndSecure = 3,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
eServerModeInvalid = 0
eServerModeNoAuthentication = 1
eServerModeAuthentication = 2
eServerModeAuthenticationAndSecure = 3
Trait Implementations§
Source§impl Clone for EServerMode
impl Clone for EServerMode
Source§fn clone(&self) -> EServerMode
fn clone(&self) -> EServerMode
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 moreimpl Copy for EServerMode
Source§impl Debug for EServerMode
impl Debug for EServerMode
impl Eq for EServerMode
Source§impl Hash for EServerMode
impl Hash for EServerMode
Source§impl PartialEq for EServerMode
impl PartialEq for EServerMode
Source§fn eq(&self, other: &EServerMode) -> bool
fn eq(&self, other: &EServerMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EServerMode
Auto Trait Implementations§
impl Freeze for EServerMode
impl RefUnwindSafe for EServerMode
impl Send for EServerMode
impl Sync for EServerMode
impl Unpin for EServerMode
impl UnsafeUnpin for EServerMode
impl UnwindSafe for EServerMode
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