pub enum StrokeShape {
Line {
start: Point,
end: Point,
},
}Variants§
Trait Implementations§
Source§impl Clone for StrokeShape
impl Clone for StrokeShape
Source§fn clone(&self) -> StrokeShape
fn clone(&self) -> StrokeShape
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 StrokeShape
impl Debug for StrokeShape
Source§impl PartialEq for StrokeShape
impl PartialEq for StrokeShape
impl Copy for StrokeShape
impl StructuralPartialEq for StrokeShape
Auto Trait Implementations§
impl Freeze for StrokeShape
impl RefUnwindSafe for StrokeShape
impl Send for StrokeShape
impl Sync for StrokeShape
impl Unpin for StrokeShape
impl UnsafeUnpin for StrokeShape
impl UnwindSafe for StrokeShape
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