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)

An edge expressing containment relationship.

Next(E11)

An edge associating a range with a result set.

Item(Item)

An edge representing an item in a result set.

Moniker(E11)

An edge associating a range with a moniker.

NextMoniker(E11)

An edge associating a moniker with another moniker.

PackageInformation(E11)

An edge associating a moniker with a package information.

Definition(E11)

An edge representing a definition relationship.

Declaration(E11)

An edge representing a declaration relationship.

Hover(E11)

An edge representing a hover relationship.

References(E11)

An edge representing a references relationship.

Implementation(E11)

An edge representing an implementation relationship.

TypeDefinition(E11)

An edge representing a type definition relationship.

FoldingRange(E11)

An edge representing a folding range relationship.

An edge representing a document link relationship.

DocumentSymbol(E11)

An edge representing a document symbol relationship.

Diagnostic(E11)

An edge representing a diagnostic relationship.

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 From<Item> for Edge[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.