pub enum ShapeRecord {
StyleChange(Box<StyleChangeData>),
StraightEdge {
delta: PointDelta<Twips>,
},
CurvedEdge {
control_delta: PointDelta<Twips>,
anchor_delta: PointDelta<Twips>,
},
}Variants§
Trait Implementations§
Source§impl Clone for ShapeRecord
impl Clone for ShapeRecord
Source§fn clone(&self) -> ShapeRecord
fn clone(&self) -> ShapeRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 ShapeRecord
impl Debug for ShapeRecord
Source§impl PartialEq for ShapeRecord
impl PartialEq for ShapeRecord
impl Eq for ShapeRecord
impl StructuralPartialEq for ShapeRecord
Auto Trait Implementations§
impl Freeze for ShapeRecord
impl RefUnwindSafe for ShapeRecord
impl Send for ShapeRecord
impl Sync for ShapeRecord
impl Unpin for ShapeRecord
impl UnwindSafe for ShapeRecord
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