Struct devices::virtio::queue::packed_descriptor_chain::PackedDescriptorChain
source · pub struct PackedDescriptorChain<'m> {
avail_wrap_counter: bool,
index: Option<u16>,
count: u16,
id: Option<u16>,
queue_size: u16,
mem: &'m GuestMemory,
desc_table: GuestAddress,
}
Fields§
§avail_wrap_counter: bool
§index: Option<u16>
Current descriptor index within desc_table
, or None
if the iterator is exhausted.
count: u16
Number of descriptors returned by the iterator already.
If count
reaches queue_size
, the chain has a loop and is therefore invalid.
id: Option<u16>
Buffer Id, which locates at the last descriptor in the chain
queue_size: u16
§mem: &'m GuestMemory
§desc_table: GuestAddress
Implementations§
source§impl<'m> PackedDescriptorChain<'m>
impl<'m> PackedDescriptorChain<'m>
sourcepub fn new(
mem: &'m GuestMemory,
desc_table: GuestAddress,
queue_size: u16,
avail_wrap_counter: bool,
index: u16
) -> PackedDescriptorChain<'m>
pub fn new( mem: &'m GuestMemory, desc_table: GuestAddress, queue_size: u16, avail_wrap_counter: bool, index: u16 ) -> PackedDescriptorChain<'m>
Construct a new iterator over a split virtqueue descriptor chain.
§Arguments
mem
- TheGuestMemory
containing the descriptor chain.desc_table
- Guest physical address of the descriptor table.queue_size
- Total number of entries in the descriptor table.index
- The index of the first descriptor in the chain.
Trait Implementations§
source§impl DescriptorChainIter for PackedDescriptorChain<'_>
impl DescriptorChainIter for PackedDescriptorChain<'_>
Auto Trait Implementations§
impl<'m> RefUnwindSafe for PackedDescriptorChain<'m>
impl<'m> Send for PackedDescriptorChain<'m>
impl<'m> Sync for PackedDescriptorChain<'m>
impl<'m> Unpin for PackedDescriptorChain<'m>
impl<'m> UnwindSafe for PackedDescriptorChain<'m>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.