pub struct DecodedCurve {
pub pos: usize,
pub geometry: CurveGeometry,
}Expand description
A decoded analytic curve and its source offset.
Fields§
§pos: usizeByte offset of the record’s type tag within the stream.
geometry: CurveGeometryThe decoded curve geometry.
Trait Implementations§
Source§impl Clone for DecodedCurve
impl Clone for DecodedCurve
Source§fn clone(&self) -> DecodedCurve
fn clone(&self) -> DecodedCurve
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 DecodedCurve
impl RefUnwindSafe for DecodedCurve
impl Send for DecodedCurve
impl Sync for DecodedCurve
impl Unpin for DecodedCurve
impl UnsafeUnpin for DecodedCurve
impl UnwindSafe for DecodedCurve
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