pub struct IntLoopEntry<'a> {
pub target_descriptors: DescriptorLoop<'a>,
pub operational_descriptors: DescriptorLoop<'a>,
}Expand description
A target/operational descriptor-loop pair in the INT body loop (Tables 17/18, §8.4.4.1).
Fields§
§target_descriptors: DescriptorLoop<'a>Target descriptor loop — raw descriptor bytes (after the 12-bit length
field). Serializes as the typed descriptor sequence; .raw() yields the
wire bytes.
operational_descriptors: DescriptorLoop<'a>Operational descriptor loop — raw descriptor bytes (after the 12-bit
length field). Serializes as the typed descriptor sequence; .raw()
yields the wire bytes.
Trait Implementations§
Source§impl<'a> Clone for IntLoopEntry<'a>
impl<'a> Clone for IntLoopEntry<'a>
Source§fn clone(&self) -> IntLoopEntry<'a>
fn clone(&self) -> IntLoopEntry<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for IntLoopEntry<'a>
impl<'a> Debug for IntLoopEntry<'a>
impl<'a> Eq for IntLoopEntry<'a>
Source§impl<'a> PartialEq for IntLoopEntry<'a>
impl<'a> PartialEq for IntLoopEntry<'a>
Source§fn eq(&self, other: &IntLoopEntry<'a>) -> bool
fn eq(&self, other: &IntLoopEntry<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for IntLoopEntry<'a>
impl<'a> Serialize for IntLoopEntry<'a>
impl<'a> StructuralPartialEq for IntLoopEntry<'a>
Auto Trait Implementations§
impl<'a> Freeze for IntLoopEntry<'a>
impl<'a> RefUnwindSafe for IntLoopEntry<'a>
impl<'a> Send for IntLoopEntry<'a>
impl<'a> Sync for IntLoopEntry<'a>
impl<'a> Unpin for IntLoopEntry<'a>
impl<'a> UnsafeUnpin for IntLoopEntry<'a>
impl<'a> UnwindSafe for IntLoopEntry<'a>
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