pub struct SplitDescriptorChain<'m> {
index: Option<u16>,
count: u16,
queue_size: u16,
mem: &'m GuestMemory,
desc_table: GuestAddress,
}Expand description
Iterator over the descriptors of a split virtqueue descriptor chain.
Fields§
§index: Option<u16>Current descriptor index within desc_table, or None if the iterator is exhausted.
count: u16Number of descriptors returned by the iterator already.
If count reaches queue_size, the chain has a loop and is therefore invalid.
queue_size: u16§mem: &'m GuestMemory§desc_table: GuestAddressImplementations§
Source§impl<'m> SplitDescriptorChain<'m>
impl<'m> SplitDescriptorChain<'m>
Sourcepub fn new(
mem: &'m GuestMemory,
desc_table: GuestAddress,
queue_size: u16,
index: u16,
) -> SplitDescriptorChain<'m>
pub fn new( mem: &'m GuestMemory, desc_table: GuestAddress, queue_size: u16, index: u16, ) -> SplitDescriptorChain<'m>
Construct a new iterator over a split virtqueue descriptor chain.
§Arguments
mem- TheGuestMemorycontaining 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 SplitDescriptorChain<'_>
impl DescriptorChainIter for SplitDescriptorChain<'_>
Auto Trait Implementations§
impl<'m> Freeze for SplitDescriptorChain<'m>
impl<'m> RefUnwindSafe for SplitDescriptorChain<'m>
impl<'m> Send for SplitDescriptorChain<'m>
impl<'m> Sync for SplitDescriptorChain<'m>
impl<'m> Unpin for SplitDescriptorChain<'m>
impl<'m> UnwindSafe for SplitDescriptorChain<'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.