pub enum NoteShape {
Circle,
Rectangle {
width: f32,
height: f32,
},
Arrow {
width: f32,
height: f32,
},
Image(Image<'static>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NoteShape
impl RefUnwindSafe for NoteShape
impl Send for NoteShape
impl Sync for NoteShape
impl Unpin for NoteShape
impl UnwindSafe for NoteShape
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