pub struct SupportUvRecord {
pub xmt: u32,
pub count: u32,
pub marker: u8,
pub values: Vec<f64>,
pub framing: SupportUvFraming,
pub pos: usize,
}Expand description
A complete support-UV values-array record.
Fields§
§xmt: u32Cross-reference index of the values array.
count: u32Serialized scalar count.
marker: u8Tuple-packing marker (2, 3, or 4).
values: Vec<f64>Ordered serialized finite scalar values.
framing: SupportUvFramingSerialized record framing.
pos: usizeTag or inline-payload offset in the inflated stream.
Trait Implementations§
Source§impl Clone for SupportUvRecord
impl Clone for SupportUvRecord
Source§fn clone(&self) -> SupportUvRecord
fn clone(&self) -> SupportUvRecord
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 Debug for SupportUvRecord
impl Debug for SupportUvRecord
Source§impl PartialEq for SupportUvRecord
impl PartialEq for SupportUvRecord
impl StructuralPartialEq for SupportUvRecord
Auto Trait Implementations§
impl Freeze for SupportUvRecord
impl RefUnwindSafe for SupportUvRecord
impl Send for SupportUvRecord
impl Sync for SupportUvRecord
impl Unpin for SupportUvRecord
impl UnsafeUnpin for SupportUvRecord
impl UnwindSafe for SupportUvRecord
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