pub enum CallSecurityState {
UnknownState,
NotAuthenticated,
Authenticated,
Unknown(u32),
}Expand description
Security indication presented for a call.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CallSecurityState
impl Clone for CallSecurityState
Source§fn clone(&self) -> CallSecurityState
fn clone(&self) -> CallSecurityState
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 CallSecurityState
Source§impl Debug for CallSecurityState
impl Debug for CallSecurityState
impl Eq for CallSecurityState
Source§impl From<CallSecurityState> for u32
impl From<CallSecurityState> for u32
Source§fn from(value: CallSecurityState) -> Self
fn from(value: CallSecurityState) -> Self
Converts to this type from the input type.
Source§impl From<u32> for CallSecurityState
impl From<u32> for CallSecurityState
Source§impl Hash for CallSecurityState
impl Hash for CallSecurityState
Source§impl PartialEq for CallSecurityState
impl PartialEq for CallSecurityState
impl StructuralPartialEq for CallSecurityState
Auto Trait Implementations§
impl Freeze for CallSecurityState
impl RefUnwindSafe for CallSecurityState
impl Send for CallSecurityState
impl Sync for CallSecurityState
impl Unpin for CallSecurityState
impl UnsafeUnpin for CallSecurityState
impl UnwindSafe for CallSecurityState
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