[][src]Enum orgize::Object

pub enum Object<'a> {
    Cookie(Cookie<'a>),
    FnRef(FnRef<'a>),
    InlineCall(InlineCall<'a>),
    InlineSrc(InlineSrc<'a>),
    Link(Link<'a>),
    Macros(Macros<'a>),
    RadioTarget(RadioTarget<'a>),
    Snippet(Snippet<'a>),
    Target(Target<'a>),
    Bold {
        end: usize,
    },
    Italic {
        end: usize,
    },
    Strike {
        end: usize,
    },
    Underline {
        end: usize,
    },
    Verbatim(&'a str),
    Code(&'a str),
    Text(&'a str),
}

Variants

Cookie(Cookie<'a>)FnRef(FnRef<'a>)InlineCall(InlineCall<'a>)InlineSrc(InlineSrc<'a>)Link(Link<'a>)Macros(Macros<'a>)RadioTarget(RadioTarget<'a>)Snippet(Snippet<'a>)Target(Target<'a>)Bold

Fields of Bold

end: usize
Italic

Fields of Italic

end: usize
Strike

Fields of Strike

end: usize
Underline

Fields of Underline

end: usize
Verbatim(&'a str)Code(&'a str)Text(&'a str)

Methods

impl<'a> Object<'a>[src]

pub fn next_2(src: &'a str) -> (Object<'a>, usize, Option<(Object<'a>, usize)>)[src]

Auto Trait Implementations

impl<'a> Send for Object<'a>

impl<'a> Sync for Object<'a>

Blanket Implementations

impl<T> From for T[src]

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

impl<T, U> TryFrom for T where
    U: Into<T>, 
[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> BorrowMut for T where
    T: ?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.