Struct grep_printer::PrinterPath [−][src]
pub struct PrinterPath<'a>(_);
Expand description
A simple encapsulation of a file path used by a printer.
This represents any transforms that we might want to perform on the path, such as converting it to valid UTF-8 and/or replacing its separator with something else. This allows us to amortize work if we are printing the file path for every match.
In the common case, no transformation is needed, which lets us avoid the
allocation. Typically, only Windows requires a transform, since we can’t
access the raw bytes of a path directly and first need to lossily convert
to UTF-8. Windows is also typically where the path separator replacement
is used, e.g., in cygwin environments to use / instead of \.
Users of this type are expected to construct it from a normal Path
found in the standard library. It can then be written to any io::Write
implementation using the as_bytes method. This achieves platform
portability with a small cost: on Windows, paths that are not valid UTF-16
will not roundtrip correctly.
Implementations
Create a new path suitable for printing.
Create a new printer path from the given path which can be efficiently written to a writer without allocation.
If the given separator is present, then any separators in path are
replaced with it.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for PrinterPath<'a>impl<'a> Send for PrinterPath<'a>impl<'a> Sync for PrinterPath<'a>impl<'a> Unpin for PrinterPath<'a>impl<'a> UnwindSafe for PrinterPath<'a>Blanket Implementations
Mutably borrows from an owned value. Read more