#[repr(u8)]pub enum RoutingActivationResponseCode {
RoutingActivationDeniedUnknownSourceAddress = 0,
RoutingActivationDeniedAllTcpSocketsRegisteredAndActive = 1,
RoutingActivationDeniedSourceAddressAlreadyActivated = 2,
RoutingActivationDeniedSourceAddressAlreadyRegistred = 3,
RoutingActivationDeniedMissingAuthentication = 4,
RoutingActivationDeniedRejectedConfirmation = 5,
RoutingActivationDeniedUnsupportedRoutingActivationType = 6,
RoutingActivationDeniedEncryptedConnectionViaTLSRequired = 7,
RoutingSuccessfullyActivated = 16,
RoutingSuccessfullyActivatedConfirmationRequired = 17,
}Variants§
RoutingActivationDeniedUnknownSourceAddress = 0
RoutingActivationDeniedAllTcpSocketsRegisteredAndActive = 1
RoutingActivationDeniedSourceAddressAlreadyActivated = 2
RoutingActivationDeniedSourceAddressAlreadyRegistred = 3
RoutingActivationDeniedMissingAuthentication = 4
RoutingActivationDeniedRejectedConfirmation = 5
RoutingActivationDeniedUnsupportedRoutingActivationType = 6
RoutingActivationDeniedEncryptedConnectionViaTLSRequired = 7
RoutingSuccessfullyActivated = 16
RoutingSuccessfullyActivatedConfirmationRequired = 17
Trait Implementations§
Source§impl Clone for RoutingActivationResponseCode
impl Clone for RoutingActivationResponseCode
Source§fn clone(&self) -> RoutingActivationResponseCode
fn clone(&self) -> RoutingActivationResponseCode
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 PartialEq for RoutingActivationResponseCode
impl PartialEq for RoutingActivationResponseCode
Source§fn eq(&self, other: &RoutingActivationResponseCode) -> bool
fn eq(&self, other: &RoutingActivationResponseCode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<u8> for RoutingActivationResponseCode
impl TryFrom<u8> for RoutingActivationResponseCode
impl Copy for RoutingActivationResponseCode
impl Eq for RoutingActivationResponseCode
impl StructuralPartialEq for RoutingActivationResponseCode
Auto Trait Implementations§
impl Freeze for RoutingActivationResponseCode
impl RefUnwindSafe for RoutingActivationResponseCode
impl Send for RoutingActivationResponseCode
impl Sync for RoutingActivationResponseCode
impl Unpin for RoutingActivationResponseCode
impl UnwindSafe for RoutingActivationResponseCode
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