Struct netlink_packet_core::error::ErrorMessage
source · #[non_exhaustive]pub struct ErrorMessage {
pub code: Option<NonZeroI32>,
pub header: Vec<u8>,
}
Expand description
An NLMSG_ERROR
message.
Per RFC 3549 section 2.3.2.2, this message carries the return code for a request which will indicate either success (an ACK) or failure (a NACK).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.code: Option<NonZeroI32>
The error code.
Holds None
when there is no error to report (the message is an ACK),
or a Some(e)
if there is a non-zero error code e
to report (the
message is a NACK).
See Netlink message types for details.
header: Vec<u8>
The original request’s header.
Implementations§
source§impl 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§
source§impl Clone for ErrorMessage
impl Clone for ErrorMessage
source§fn clone(&self) -> ErrorMessage
fn clone(&self) -> ErrorMessage
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 ErrorMessage
impl Debug for ErrorMessage
source§impl Default for ErrorMessage
impl Default for ErrorMessage
source§fn default() -> ErrorMessage
fn default() -> ErrorMessage
Returns the “default value” for a type. Read more
source§impl Display for ErrorMessage
impl Display for ErrorMessage
source§impl Emitable for ErrorMessage
impl Emitable for ErrorMessage
source§impl From<ErrorMessage> for Error
impl From<ErrorMessage> for Error
source§fn from(e: ErrorMessage) -> Error
fn from(e: ErrorMessage) -> Error
Converts to this type from the input type.
source§impl<'buffer, T: AsRef<[u8]> + 'buffer> Parseable<ErrorBuffer<&'buffer T>> for ErrorMessage
impl<'buffer, T: AsRef<[u8]> + 'buffer> Parseable<ErrorBuffer<&'buffer T>> for ErrorMessage
source§fn parse(buf: &ErrorBuffer<&'buffer T>) -> Result<ErrorMessage, DecodeError>
fn parse(buf: &ErrorBuffer<&'buffer T>) -> Result<ErrorMessage, DecodeError>
Deserialize the current type.
source§impl PartialEq<ErrorMessage> for ErrorMessage
impl PartialEq<ErrorMessage> for ErrorMessage
source§fn 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 ==
.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§
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