pub struct TermUse {
pub xmt: u32,
pub count: u32,
pub form: [u8; 2],
pub point: Point3,
pub framing: TermUseFraming,
pub pos: usize,
}Expand description
A complete term_use endpoint record.
Fields§
§xmt: u32Cross-reference index of the endpoint record.
count: u32Serialized leading count.
form: [u8; 2]Two-byte endpoint-form discriminator.
point: Point3Endpoint position in millimetres.
framing: TermUseFramingSerialized record framing.
pos: usizeTag or inline-payload offset in the inflated stream.
Trait Implementations§
impl Copy for TermUse
impl StructuralPartialEq for TermUse
Auto Trait Implementations§
impl Freeze for TermUse
impl RefUnwindSafe for TermUse
impl Send for TermUse
impl Sync for TermUse
impl Unpin for TermUse
impl UnsafeUnpin for TermUse
impl UnwindSafe for TermUse
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