[][src]Struct gluon_completion::Found

pub struct Found<'a, 'ast> {
    pub match_: Option<Match<'a, 'ast>>,
    pub near_matches: Vec<Match<'a, 'ast>>,
    pub enclosing_matches: Vec<Match<'a, 'ast>>,
}

Fields

match_: Option<Match<'a, 'ast>>near_matches: Vec<Match<'a, 'ast>>enclosing_matches: Vec<Match<'a, 'ast>>

Trait Implementations

impl<'a, 'ast> Clone for Found<'a, 'ast>[src]

impl<'a, 'ast> Debug for Found<'a, 'ast>[src]

Auto Trait Implementations

impl<'a, 'ast> RefUnwindSafe for Found<'a, 'ast>

impl<'a, 'ast> Send for Found<'a, 'ast>

impl<'a, 'ast> Sync for Found<'a, 'ast>

impl<'a, 'ast> Unpin for Found<'a, 'ast> where
    'ast: 'a, 

impl<'a, 'ast> UnwindSafe for Found<'a, 'ast>

Blanket Implementations

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

impl<Id> AsId<Id> for Id where
    Id: ?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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.