#[repr(u8)]pub enum ActivationCode {
Show 13 variants
DeniedUnknownSourceAddress,
DeniedTcpSocketsFull,
DeniedTcpSocketAlreadyConnected,
DeniedSourceIsAlreadyActive,
DeniedMissingAuthentication,
DeniedRejectedConfirmation,
DeniedUnsupportedRoutingActivationType,
DeniedRequestEncryptedTlsConnection,
DeniedVehicleInCriticalState,
Reserved(u8),
SuccessfullyActivated,
ActivatedConfirmationRequired,
ReservedForOem(u8),
}Variants§
DeniedUnknownSourceAddress
DeniedTcpSocketsFull
DeniedTcpSocketAlreadyConnected
DeniedSourceIsAlreadyActive
DeniedMissingAuthentication
DeniedRejectedConfirmation
DeniedUnsupportedRoutingActivationType
DeniedRequestEncryptedTlsConnection
DeniedVehicleInCriticalState
Reserved(u8)
SuccessfullyActivated
ActivatedConfirmationRequired
ReservedForOem(u8)
Trait Implementations§
Source§impl Clone for ActivationCode
impl Clone for ActivationCode
Source§fn clone(&self) -> ActivationCode
fn clone(&self) -> ActivationCode
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 ActivationCode
impl Debug for ActivationCode
Source§impl FrameRead<'_> for ActivationCode
impl FrameRead<'_> for ActivationCode
Source§impl FrameWrite for ActivationCode
impl FrameWrite for ActivationCode
Source§impl From<ActivationCode> for u8
impl From<ActivationCode> for u8
Source§fn from(value: ActivationCode) -> Self
fn from(value: ActivationCode) -> Self
Converts to this type from the input type.
Source§impl From<ActivationDenialReason> for ActivationCode
impl From<ActivationDenialReason> for ActivationCode
Source§fn from(value: ActivationDenialReason) -> Self
fn from(value: ActivationDenialReason) -> Self
Converts to this type from the input type.
Source§impl Ord for ActivationCode
impl Ord for ActivationCode
Source§fn cmp(&self, other: &ActivationCode) -> Ordering
fn cmp(&self, other: &ActivationCode) -> Ordering
1.21.0 · 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 ActivationCode
impl PartialEq for ActivationCode
Source§impl PartialOrd for ActivationCode
impl PartialOrd for ActivationCode
impl Eq for ActivationCode
impl StructuralPartialEq for ActivationCode
Auto Trait Implementations§
impl Freeze for ActivationCode
impl RefUnwindSafe for ActivationCode
impl Send for ActivationCode
impl Sync for ActivationCode
impl Unpin for ActivationCode
impl UnsafeUnpin for ActivationCode
impl UnwindSafe for ActivationCode
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