Enum lsif_types::Edge[][src]

pub enum Edge {
    Contains(E1N),
    Next(E11),
    Item(Item),
    Moniker(E11),
    NextMoniker(E11),
    PackageInformation(E11),
    Definition(E11),
    Declaration(E11),
    Hover(E11),
    References(E11),
    Implementation(E11),
    TypeDefinition(E11),
    FoldingRange(E11),
    DocumentLink(E11),
    DocumentSymbol(E11),
    Diagnostic(E11),
}

All available edge types.

Variants

Contains(E1N)
Next(E11)
Item(Item)
Moniker(E11)
NextMoniker(E11)
PackageInformation(E11)
Definition(E11)
Declaration(E11)
Hover(E11)
References(E11)
Implementation(E11)
TypeDefinition(E11)
FoldingRange(E11)
DocumentSymbol(E11)
Diagnostic(E11)

Trait Implementations

impl Clone for Edge[src]

impl Debug for Edge[src]

impl<'de> Deserialize<'de> for Edge[src]

impl Eq for Edge[src]

impl From<Edge> for Element[src]

impl PartialEq<Edge> for Edge[src]

impl Serialize for Edge[src]

impl StructuralEq for Edge[src]

impl StructuralPartialEq for Edge[src]

Auto Trait Implementations

impl RefUnwindSafe for Edge

impl Send for Edge

impl Sync for Edge

impl Unpin for Edge

impl UnwindSafe for Edge

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.