Struct source_map::Writable
source · pub struct Writable<T: Write> {
pub writable: T,
pub length: usize,
pub source_map: Option<SourceMapBuilder>,
}
Fields§
§writable: T
§length: usize
§source_map: Option<SourceMapBuilder>
Trait Implementations§
source§impl<T: Write> ToString for Writable<T>
impl<T: Write> ToString for Writable<T>
source§fn push_new_line(&mut self)
fn push_new_line(&mut self)
Append a new line character
source§fn push_str(&mut self, string: &str)
fn push_str(&mut self, string: &str)
Use ToString::push_str_contains_new_line if
string
could contain new linessource§fn push_str_contains_new_line(&mut self, slice: &str)
fn push_str_contains_new_line(&mut self, slice: &str)
Used to push strings that may contain new lines
source§fn add_mapping(&mut self, source_span: &SpanWithSource)
fn add_mapping(&mut self, source_span: &SpanWithSource)
Adds a mapping of the from a original position in the source to the position in the current buffer Read more
Auto Trait Implementations§
impl<T> RefUnwindSafe for Writable<T>where
T: RefUnwindSafe,
impl<T> Send for Writable<T>where
T: Send,
impl<T> Sync for Writable<T>where
T: Sync,
impl<T> Unpin for Writable<T>where
T: Unpin,
impl<T> UnwindSafe for Writable<T>where
T: UnwindSafe,
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