pub enum AlignEntry {
Unset,
Area(Area),
ShiftTurtle {
area: Area,
shift: DVec2,
skip: usize,
},
SkipTurtle {
skip: usize,
},
BeginTurtle(DVec2, DVec2),
EndTurtle,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AlignEntry
impl RefUnwindSafe for AlignEntry
impl Send for AlignEntry
impl Sync for AlignEntry
impl Unpin for AlignEntry
impl UnwindSafe for AlignEntry
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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