Struct resw::Builder[][src]

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

For building a writer when not using the default

Implementations

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> RefUnwindSafe for Builder<T> where
    T: RefUnwindSafe

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

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

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

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

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.