Skip to main content

CodeBuffer

Struct CodeBuffer 

Source
pub struct CodeBuffer { /* private fields */ }
Expand description

A CodeBuffer is a buffer that can be used to generate code without having to keep track of identation. A CodeBuffer contains either plain text which will be indented accoridng to the buffer’s own indent, or nested CodeBuffers which will be intended according to their own indent, on top of the containing buffer’s indent.

Implementations§

Source§

impl CodeBuffer

Source

pub const fn new() -> Self

Creates a new CodeBuffer with no identation.

Source

pub fn newline(&self)

Adds a single newline character to this code buffer.

Source

pub fn line(&self, text: impl Into<Cow<'static, str>>)

Adds text into the buffer, followed by a new line.

Source

pub fn text(&self, text: impl Into<Cow<'static, str>>)

Adds text into the buffer, as-is.

Source

pub fn indent(&self, indent: Cow<'static, str>) -> Rc<CodeBuffer>

Creates a new indented sub-buffer at the current position.

Source

pub fn indent_with_options(&self, options: IndentOptions) -> Rc<CodeBuffer>

Creates a new indented sub-buffer at the current position.

Source

pub fn section(&self, trailing_newline: bool) -> Rc<CodeBuffer>

Creates a new un-indented sub-buffer at the current position.

Source

pub fn write(self, writer: &mut dyn Write) -> Result<()>

Writes the content of this CodeBuffer into the provided writer.

Trait Implementations§

Source§

impl Default for CodeBuffer

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.