pub enum ShapeRecord {
Edge(Edge),
StyleChange(StyleChange),
}
Variants§
Edge(Edge)
StyleChange(StyleChange)
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<'de> Deserialize<'de> for ShapeRecord
impl<'de> Deserialize<'de> for ShapeRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ShapeRecord
impl Hash for ShapeRecord
Source§impl Ord for ShapeRecord
impl Ord for ShapeRecord
Source§fn cmp(&self, other: &ShapeRecord) -> Ordering
fn cmp(&self, other: &ShapeRecord) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ShapeRecord
impl PartialEq for ShapeRecord
Source§impl PartialOrd for ShapeRecord
impl PartialOrd for ShapeRecord
Source§impl Serialize for ShapeRecord
impl Serialize 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