pub struct LoopFields {
pub attributes: u32,
pub fin: u32,
pub face: u32,
pub next_loop: u32,
}Expand description
Sequentially decoded LOOP references.
Fields§
§attributes: u32Attribute-list reference.
fin: u32First fin in the loop.
face: u32Owning face.
next_loop: u32Next loop owned by the same face, or the null reference.
Trait Implementations§
Source§impl Clone for LoopFields
impl Clone for LoopFields
Source§fn clone(&self) -> LoopFields
fn clone(&self) -> LoopFields
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 moreimpl Copy for LoopFields
Auto Trait Implementations§
impl Freeze for LoopFields
impl RefUnwindSafe for LoopFields
impl Send for LoopFields
impl Sync for LoopFields
impl Unpin for LoopFields
impl UnsafeUnpin for LoopFields
impl UnwindSafe for LoopFields
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