pub struct VirtioPciNotifyCap { /* private fields */ }Trait Implementations§
Source§impl Debug for VirtioPciNotifyCap
impl Debug for VirtioPciNotifyCap
Source§impl Default for VirtioPciNotifyCap
impl Default for VirtioPciNotifyCap
Source§fn default() -> VirtioPciNotifyCap
fn default() -> VirtioPciNotifyCap
Returns the “default value” for a type. Read more
Source§impl FromZeros for VirtioPciNotifyCap
impl FromZeros for VirtioPciNotifyCap
Source§fn new_zeroed() -> Selfwhere
Self: Sized,
fn new_zeroed() -> Selfwhere
Self: Sized,
Creates an instance of
Self from zeroed bytes. Read moreSource§fn new_box_zeroed() -> Result<Box<Self>, AllocError>where
Self: Sized,
fn new_box_zeroed() -> Result<Box<Self>, AllocError>where
Self: Sized,
Creates a
Box<Self> from zeroed bytes. Read moreSource§fn new_vec_zeroed(len: usize) -> Result<Vec<Self>, AllocError>where
Self: Sized,
fn new_vec_zeroed(len: usize) -> Result<Vec<Self>, AllocError>where
Self: Sized,
Creates a
Vec<Self> from zeroed bytes. Read moreSource§fn extend_vec_zeroed(
v: &mut Vec<Self>,
additional: usize,
) -> Result<(), AllocError>where
Self: Sized,
fn extend_vec_zeroed(
v: &mut Vec<Self>,
additional: usize,
) -> Result<(), AllocError>where
Self: Sized,
Extends a
Vec<Self> by pushing additional new items onto the end of
the vector. The new items are initialized with zeros.Source§impl IntoBytes for VirtioPciNotifyCap
impl IntoBytes for VirtioPciNotifyCap
Source§impl Mmio for VirtioPciNotifyCap
impl Mmio for VirtioPciNotifyCap
Source§impl PciConfigArea for VirtioPciNotifyCap
impl PciConfigArea for VirtioPciNotifyCap
Source§impl TryFromBytes for VirtioPciNotifyCap
impl TryFromBytes for VirtioPciNotifyCap
Source§fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
Source§fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
impl Immutable for VirtioPciNotifyCap
Auto Trait Implementations§
impl Freeze for VirtioPciNotifyCap
impl RefUnwindSafe for VirtioPciNotifyCap
impl Send for VirtioPciNotifyCap
impl Sync for VirtioPciNotifyCap
impl Unpin for VirtioPciNotifyCap
impl UnsafeUnpin for VirtioPciNotifyCap
impl UnwindSafe for VirtioPciNotifyCap
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