pub enum ClientTypeEnum {
Permanent,
Ephemeral,
Unknown(u8),
}Expand description
ClientTypeEnum (enum8).
Variants§
Permanent
Permanent = 0.
Ephemeral
Ephemeral = 1.
Unknown(u8)
A value not known to this codegen revision.
Implementations§
Trait Implementations§
Source§impl Clone for ClientTypeEnum
impl Clone for ClientTypeEnum
Source§fn clone(&self) -> ClientTypeEnum
fn clone(&self) -> ClientTypeEnum
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 ClientTypeEnum
Source§impl Debug for ClientTypeEnum
impl Debug for ClientTypeEnum
impl Eq for ClientTypeEnum
Source§impl PartialEq for ClientTypeEnum
impl PartialEq for ClientTypeEnum
impl StructuralPartialEq for ClientTypeEnum
Auto Trait Implementations§
impl Freeze for ClientTypeEnum
impl RefUnwindSafe for ClientTypeEnum
impl Send for ClientTypeEnum
impl Sync for ClientTypeEnum
impl Unpin for ClientTypeEnum
impl UnsafeUnpin for ClientTypeEnum
impl UnwindSafe for ClientTypeEnum
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