Struct netlink_packet_core::error::ErrorMessage
source · [−]Fields
code: i32
header: Vec<u8>
Implementations
sourceimpl ErrorMessage
impl ErrorMessage
sourcepub fn to_io(&self) -> Error
pub fn to_io(&self) -> Error
According to netlink(7)
the NLMSG_ERROR
return Negative errno or 0 for acknowledgements.
convert into std::io::Error
using the absolute value from errno code
Trait Implementations
sourceimpl Clone for ErrorMessage
impl Clone for ErrorMessage
sourcefn clone(&self) -> ErrorMessage
fn clone(&self) -> ErrorMessage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ErrorMessage
impl Debug for ErrorMessage
sourceimpl Display for ErrorMessage
impl Display for ErrorMessage
sourceimpl Emitable for ErrorMessage
impl Emitable for ErrorMessage
sourceimpl From<ErrorMessage> for Error
impl From<ErrorMessage> for Error
sourcefn from(e: ErrorMessage) -> Error
fn from(e: ErrorMessage) -> Error
Performs the conversion.
sourceimpl<'buffer, T: AsRef<[u8]> + 'buffer> Parseable<ErrorBuffer<&'buffer T>> for ErrorMessage
impl<'buffer, T: AsRef<[u8]> + 'buffer> Parseable<ErrorBuffer<&'buffer T>> for ErrorMessage
sourcefn parse(buf: &ErrorBuffer<&'buffer T>) -> Result<ErrorMessage, DecodeError>
fn parse(buf: &ErrorBuffer<&'buffer T>) -> Result<ErrorMessage, DecodeError>
Deserialize the current type.
sourceimpl PartialEq<ErrorMessage> for ErrorMessage
impl PartialEq<ErrorMessage> for ErrorMessage
sourcefn eq(&self, other: &ErrorMessage) -> bool
fn eq(&self, other: &ErrorMessage) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ErrorMessage) -> bool
fn ne(&self, other: &ErrorMessage) -> bool
This method tests for !=
.
impl Eq for ErrorMessage
impl StructuralEq for ErrorMessage
impl StructuralPartialEq for ErrorMessage
Auto Trait Implementations
impl RefUnwindSafe for ErrorMessage
impl Send for ErrorMessage
impl Sync for ErrorMessage
impl Unpin for ErrorMessage
impl UnwindSafe for ErrorMessage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more