#[non_exhaustive]#[repr(u8)]pub enum AddressScope {
Universe,
Site,
Link,
Host,
Nowhere,
Other(u8),
}
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.
Trait Implementations§
source§impl Clone for AddressScope
impl Clone for AddressScope
source§fn clone(&self) -> AddressScope
fn clone(&self) -> AddressScope
Returns a copy 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 AddressScope
impl Debug for AddressScope
source§impl Default for AddressScope
impl Default for AddressScope
source§fn default() -> AddressScope
fn default() -> AddressScope
Returns the “default value” for a type. Read more
source§impl From<AddressScope> for u8
impl From<AddressScope> for u8
source§fn from(v: AddressScope) -> u8
fn from(v: AddressScope) -> u8
Converts to this type from the input type.
source§impl From<u8> for AddressScope
impl From<u8> for AddressScope
source§impl PartialEq for AddressScope
impl PartialEq for AddressScope
source§fn eq(&self, other: &AddressScope) -> bool
fn eq(&self, other: &AddressScope) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AddressScope
impl Eq for AddressScope
impl StructuralEq for AddressScope
impl StructuralPartialEq for AddressScope
Auto Trait Implementations§
impl RefUnwindSafe for AddressScope
impl Send for AddressScope
impl Sync for AddressScope
impl Unpin for AddressScope
impl UnwindSafe for AddressScope
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