#[non_exhaustive]pub enum ControlRemoteAccess {
Enabled,
EnabledManagedDomain,
EnabledManagedDomainTimeLimited,
NotAllowed,
Reserved(u8),
}Expand description
Control remote access over internet — ETSI EN 300 468 Table 58.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Enabled
0b00 — redistribution over the Internet is enabled.
EnabledManagedDomain
0b01 — redistribution over the Internet is enabled but only within a managed domain.
EnabledManagedDomainTimeLimited
0b10 — redistribution over the Internet is enabled but only within a managed domain and after a certain short period of time.
NotAllowed
0b11 — redistribution over the Internet is not allowed.
Reserved(u8)
Reserved/unallocated wire value, preserved verbatim for round-trip.
Implementations§
Trait Implementations§
Source§impl Clone for ControlRemoteAccess
impl Clone for ControlRemoteAccess
Source§fn clone(&self) -> ControlRemoteAccess
fn clone(&self) -> ControlRemoteAccess
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 ControlRemoteAccess
Source§impl Debug for ControlRemoteAccess
impl Debug for ControlRemoteAccess
impl Eq for ControlRemoteAccess
Source§impl PartialEq for ControlRemoteAccess
impl PartialEq for ControlRemoteAccess
Source§fn eq(&self, other: &ControlRemoteAccess) -> bool
fn eq(&self, other: &ControlRemoteAccess) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ControlRemoteAccess
impl Serialize for ControlRemoteAccess
impl StructuralPartialEq for ControlRemoteAccess
Auto Trait Implementations§
impl Freeze for ControlRemoteAccess
impl RefUnwindSafe for ControlRemoteAccess
impl Send for ControlRemoteAccess
impl Sync for ControlRemoteAccess
impl Unpin for ControlRemoteAccess
impl UnsafeUnpin for ControlRemoteAccess
impl UnwindSafe for ControlRemoteAccess
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