Enum dprint_core::formatting::Signal
source · [−]pub enum Signal {
Show 16 variants
NewLine,
Tab,
PossibleNewLine,
SpaceOrNewLine,
ExpectNewLine,
QueueStartIndent,
StartIndent,
FinishIndent,
StartNewLineGroup,
FinishNewLineGroup,
SingleIndent,
StartIgnoringIndent,
FinishIgnoringIndent,
StartForceNoNewLines,
FinishForceNoNewLines,
SpaceIfNotTrailing,
}
Variants
NewLine
Signal that a new line should occur based on the printer settings.
Tab
Signal that a tab should occur based on the printer settings.
PossibleNewLine
Signal that the current location could be a newline when exceeding the line width.
SpaceOrNewLine
Signal that the current location should be a space, but could be a newline if exceeding the line width.
ExpectNewLine
Expect the next character to be a newline. If it’s not, force a newline.
QueueStartIndent
Queue a start indent to be set after the next written item.
StartIndent
Signal the start of a section that should be indented.
FinishIndent
Signal the end of a section that should be indented.
StartNewLineGroup
Signal the start of a group of print items that have a lower precedence for being broken up with a newline for exceeding the line width.
FinishNewLineGroup
Signal the end of a newline group.
SingleIndent
Signal that a single indent should occur based on the printer settings.
StartIgnoringIndent
Signal to the printer that it should stop using indentation.
FinishIgnoringIndent
Signal to the printer that it should start using indentation again.
StartForceNoNewLines
Signal to the printer that it shouldn’t print any new lines.
FinishForceNoNewLines
Signal to the printer that it should finish not printing any new lines.
SpaceIfNotTrailing
Signal that a space should occur if not trailing.
Trait Implementations
sourceimpl From<Signal> for PrintItems
impl From<Signal> for PrintItems
impl Copy for Signal
impl StructuralPartialEq for Signal
Auto Trait Implementations
impl RefUnwindSafe for Signal
impl Send for Signal
impl Sync for Signal
impl Unpin for Signal
impl UnwindSafe for Signal
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more