Struct netlink_packet_core::error::ErrorBuffer
source · #[non_exhaustive]pub struct ErrorBuffer<T> { /* private fields */ }
Implementations§
source§impl<T: AsRef<[u8]>> ErrorBuffer<T>
impl<T: AsRef<[u8]>> ErrorBuffer<T>
pub fn new(buffer: T) -> ErrorBuffer<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consume the packet, returning the underlying buffer.
pub fn new_checked(buffer: T) -> Result<Self, DecodeError>
sourcepub fn code(&self) -> Option<NonZeroI32>
pub fn code(&self) -> Option<NonZeroI32>
Return the error code.
Returns 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).
Trait Implementations§
source§impl<T: Clone> Clone for ErrorBuffer<T>
impl<T: Clone> Clone for ErrorBuffer<T>
source§fn clone(&self) -> ErrorBuffer<T>
fn clone(&self) -> ErrorBuffer<T>
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<T: Debug> Debug for ErrorBuffer<T>
impl<T: Debug> Debug for ErrorBuffer<T>
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<T: PartialEq> PartialEq<ErrorBuffer<T>> for ErrorBuffer<T>
impl<T: PartialEq> PartialEq<ErrorBuffer<T>> for ErrorBuffer<T>
source§fn eq(&self, other: &ErrorBuffer<T>) -> bool
fn eq(&self, other: &ErrorBuffer<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T: Eq> Eq for ErrorBuffer<T>
impl<T> StructuralEq for ErrorBuffer<T>
impl<T> StructuralPartialEq for ErrorBuffer<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for ErrorBuffer<T>where T: RefUnwindSafe,
impl<T> Send for ErrorBuffer<T>where T: Send,
impl<T> Sync for ErrorBuffer<T>where T: Sync,
impl<T> Unpin for ErrorBuffer<T>where T: Unpin,
impl<T> UnwindSafe for ErrorBuffer<T>where T: UnwindSafe,
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