#[repr(u8)]pub enum ActiveCode {
SourceAddressUnknown = 0,
Activated = 1,
SourceAddressInvalid = 2,
SocketInvalid = 3,
WithoutAuth = 4,
VehicleRefused = 5,
Unsupported = 6,
TLSRequired = 7,
Success = 16,
NeedConfirm = 17,
VMSpecific(u8),
Reserved(u8),
}Expand description
Table 49 — Routing activation response code values
Variants§
SourceAddressUnknown = 0
Activated = 1
SourceAddressInvalid = 2
SocketInvalid = 3
WithoutAuth = 4
VehicleRefused = 5
Unsupported = 6
TLSRequired = 7
ISO 14300-2:2019
Success = 16
NeedConfirm = 17
VMSpecific(u8)
Reserved(u8)
Trait Implementations§
Source§impl Clone for ActiveCode
impl Clone for ActiveCode
Source§fn clone(&self) -> ActiveCode
fn clone(&self) -> ActiveCode
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 ActiveCode
impl Debug for ActiveCode
Source§impl From<ActiveCode> for u8
impl From<ActiveCode> for u8
Source§fn from(val: ActiveCode) -> Self
fn from(val: ActiveCode) -> Self
Converts to this type from the input type.
Source§impl From<u8> for ActiveCode
impl From<u8> for ActiveCode
Source§impl PartialEq for ActiveCode
impl PartialEq for ActiveCode
impl Copy for ActiveCode
impl Eq for ActiveCode
impl StructuralPartialEq for ActiveCode
Auto Trait Implementations§
impl Freeze for ActiveCode
impl RefUnwindSafe for ActiveCode
impl Send for ActiveCode
impl Sync for ActiveCode
impl Unpin for ActiveCode
impl UnwindSafe for ActiveCode
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