[][src]Struct resw::Builder

pub struct Builder<T: Write> { /* fields omitted */ }

For building a writer when not using the default

Methods

impl<T: Write> Builder<T>
[src]

pub fn new() -> Self
[src]

pub fn new_line(&mut self, new_line: &str) -> &mut Self
[src]

Set the string to separate new lines

defaults to "\n"

pub fn set_new_line(&mut self, new_line: &str)
[src]

Set the string to separate new lines

defaults to "\n"

pub fn quote(&mut self, quote: char) -> &mut Self
[src]

Sets the character to use to wrap strings in the default is to just use the quotes provided by the original text. Providing a quote character here will result in the Writer re-writing the string.

pub fn set_quote(&mut self, quote: char)
[src]

Sets the character to use to wrap strings in the default is to just use the quotes provided by the original text. Providing a quote character here will result in the Writer re-writing the string.

pub fn indent(&mut self, indent: &str) -> &mut Self
[src]

Sets the string to use as indentation. By default this will be set to 4 spaces.

pub fn set_indent(&mut self, indent: &str)
[src]

Sets the string to use as indentation. By default this will be set to 4 spaces.

pub fn build(&self, destination: T) -> Writer<T>
[src]

Finalize the writer with the destination.

Auto Trait Implementations

impl<T> Send for Builder<T> where
    T: Send

impl<T> Sync for Builder<T> where
    T: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]