#[non_exhaustive]pub enum RtnlAddressResponse {
Success,
Failed,
NotImplemented,
NotFound,
Ipv4Addrs(Vec<Ipv4Addr>),
Ipv6Addrs(Vec<Ipv6Addr>),
}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 RtnlAddressResponse
impl Clone for RtnlAddressResponse
Source§fn clone(&self) -> RtnlAddressResponse
fn clone(&self) -> RtnlAddressResponse
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 moreSource§impl Debug for RtnlAddressResponse
impl Debug for RtnlAddressResponse
Source§impl PartialEq for RtnlAddressResponse
impl PartialEq for RtnlAddressResponse
impl StructuralPartialEq for RtnlAddressResponse
Auto Trait Implementations§
impl Freeze for RtnlAddressResponse
impl RefUnwindSafe for RtnlAddressResponse
impl Send for RtnlAddressResponse
impl Sync for RtnlAddressResponse
impl Unpin for RtnlAddressResponse
impl UnsafeUnpin for RtnlAddressResponse
impl UnwindSafe for RtnlAddressResponse
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