pub struct DecodedPoint {
pub pos: usize,
pub position: Point3,
}Expand description
A decoded point and its source offset.
Fields§
§pos: usizeByte offset of the record’s 00 1d tag within the stream.
position: Point3Position in millimetres.
Trait Implementations§
Source§impl Clone for DecodedPoint
impl Clone for DecodedPoint
Source§fn clone(&self) -> DecodedPoint
fn clone(&self) -> DecodedPoint
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 moreAuto Trait Implementations§
impl Freeze for DecodedPoint
impl RefUnwindSafe for DecodedPoint
impl Send for DecodedPoint
impl Sync for DecodedPoint
impl Unpin for DecodedPoint
impl UnsafeUnpin for DecodedPoint
impl UnwindSafe for DecodedPoint
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