pub struct Indent<'a> { /* private fields */ }Expand description
Indents each line of a string by a fixed number of spaces.
Each line is prefixed with spaces spaces and terminated with a newline.
§Examples
use diskann_benchmark_runner::utils::fmt::Indent;
let indented = Indent::new("hello\nworld", 4).to_string();
assert_eq!(indented, " hello\n world\n");Implementations§
Trait Implementations§
impl<'a> Copy for Indent<'a>
Auto Trait Implementations§
impl<'a> Freeze for Indent<'a>
impl<'a> RefUnwindSafe for Indent<'a>
impl<'a> Send for Indent<'a>
impl<'a> Sync for Indent<'a>
impl<'a> Unpin for Indent<'a>
impl<'a> UnsafeUnpin for Indent<'a>
impl<'a> UnwindSafe for Indent<'a>
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