pub struct Context<'a> {
pub max_line: Option<usize>,
pub tab_size: usize,
pub indent_level: usize,
pub broken: bool,
pub writer: &'a mut dyn Write,
}Expand description
A struct used internally in pretty-printing to store information about the rendering environment.
You only need to use this struct if you are implementing your own Pretty types. To render an
existing Pretty type with custom line length and tab size parameters, use the max_line and
tab_size arguments of the write or to_string functions.
Fields§
§max_line: Option<usize>The maximum desired line length, or None if lines may be of unlimited length.
tab_size: usizeThe desired number of spaces to use for a single level of indentation.
indent_level: usizeThe current number of tab stops to be inserted before each new line.
broken: boolWhether or not the environment has been broken across multiple lines because its contents were too large.
writer: &'a mut dyn WriteThe handle to render to.
Auto Trait Implementations§
impl<'a> Freeze for Context<'a>
impl<'a> !RefUnwindSafe for Context<'a>
impl<'a> !Send for Context<'a>
impl<'a> !Sync for Context<'a>
impl<'a> Unpin for Context<'a>
impl<'a> !UnwindSafe for Context<'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