pub enum Verb {
Skip,
Off,
On,
SkipFile,
}Expand description
The scope a directive applies to. The verb is the scope.
Variants§
Skip
skip — the next meaningful sibling. When the directive comment binds
forward into a DOC_COMMENT (parser trivia rule), the target is the
whole construct that owns it, which is the shape an author writing a
directive above \begin{tikzpicture} means.
Off
off — from the next meaningful thing (as Verb::Skip resolves it) to
the matching on, or to end of file.
On
on — closes an open off with the same axis and rule. Inert without one.
SkipFile
skip-file — the whole file, wherever in it the directive sits.
Trait Implementations§
impl Copy for Verb
impl Eq for Verb
impl StructuralPartialEq for Verb
Auto Trait Implementations§
impl Freeze for Verb
impl RefUnwindSafe for Verb
impl Send for Verb
impl Sync for Verb
impl Unpin for Verb
impl UnsafeUnpin for Verb
impl UnwindSafe for Verb
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