pub enum NoteSide {
Over(usize, Option<usize>),
LeftOf(usize),
RightOf(usize),
}Expand description
Where a note attaches.
Variants§
Over(usize, Option<usize>)
Note over A[,B] — spans one or two lifelines.
LeftOf(usize)
Note left of A.
RightOf(usize)
Note right of A.
Trait Implementations§
impl Copy for NoteSide
impl Eq for NoteSide
impl StructuralPartialEq for NoteSide
Auto Trait Implementations§
impl Freeze for NoteSide
impl RefUnwindSafe for NoteSide
impl Send for NoteSide
impl Sync for NoteSide
impl Unpin for NoteSide
impl UnsafeUnpin for NoteSide
impl UnwindSafe for NoteSide
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