[][src]Struct bracket::parser::ast::TextBlock

pub struct TextBlock<'source> { /* fields omitted */ }

Text blocks encapsulate a text node with start and end ranges; used primarily for comments.

Implementations

impl<'source> TextBlock<'source>[src]

pub fn new(
    source: &'source str,
    text: Text<'source>,
    open: Range<usize>,
    close: Range<usize>
) -> Self
[src]

Create a new text block.

Trait Implementations

impl<'_> Debug for TextBlock<'_>[src]

impl<'_> Display for TextBlock<'_>[src]

impl<'source> Eq for TextBlock<'source>[src]

impl<'source> Into<Text<'source>> for TextBlock<'source>[src]

impl<'source> PartialEq<TextBlock<'source>> for TextBlock<'source>[src]

impl<'source> Slice<'source> for TextBlock<'source>[src]

impl<'source> StructuralEq for TextBlock<'source>[src]

impl<'source> StructuralPartialEq for TextBlock<'source>[src]

Auto Trait Implementations

impl<'source> RefUnwindSafe for TextBlock<'source>

impl<'source> Send for TextBlock<'source>

impl<'source> Sync for TextBlock<'source>

impl<'source> Unpin for TextBlock<'source>

impl<'source> UnwindSafe for TextBlock<'source>

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> ToString for T where
    T: Display + ?Sized
[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.