Struct pretty::RefDoc [] [src]

pub struct RefDoc<'a>(_);

Newtype wrapper for &doc::Doc

Methods from Deref<Target = Doc<'a, RefDoc<'a>>>

[src]

Writes a rendered document to a std::io::Write object.

[src]

Writes a rendered document to a std::fmt::Write object.

[src]

Returns a value which implements std::fmt::Display

use pretty::Doc;
let doc = Doc::group(
    Doc::text("hello").append(Doc::space()).append(Doc::text("world"))
);
assert_eq!(format!("{}", doc.pretty(80)), "hello world");

[src]

Append the given document after this document.

[src]

Mark this document as a group.

Groups are layed out on a single line if possible. Within a group, all basic documents with several possible layouts are assigned the same layout, that is, they are all layed out horizontally and combined into a one single line, or they are each layed out on their own line.

[src]

Increase the indentation level of this document.

Trait Implementations

impl<'a> Clone for RefDoc<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Eq for RefDoc<'a>
[src]

impl<'a> Ord for RefDoc<'a>
[src]

[src]

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl<'a> PartialEq for RefDoc<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> PartialOrd for RefDoc<'a>
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<'a> Debug for RefDoc<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> Deref for RefDoc<'a>
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.