[][src]Struct libcurt::Result

pub struct Result { /* fields omitted */ }

Results found via extraction from strings

Methods

impl Result[src]

Access results via convenient functions

pub fn get_text(&self) -> &String[src]

return results as proper yaml string

pub fn get_print(&self) -> String[src]

return results with additional information

pub fn get_yaml(&self) -> Vec<Yaml>[src]

return results as vector of yaml struct

pub fn get_start(&self) -> usize[src]

pub fn get_end(&self) -> usize[src]

pub fn new(text: String, start: usize, end: usize) -> Result[src]

Auto Trait Implementations

impl RefUnwindSafe for Result

impl Send for Result

impl Sync for Result

impl Unpin for Result

impl UnwindSafe for Result

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 = !

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.