Struct lsp_types::CallHierarchyIncomingCall[][src]

pub struct CallHierarchyIncomingCall {
    pub from: CallHierarchyItem,
    pub from_ranges: Vec<Range>,
}

Represents an incoming call, e.g. a caller of a method or constructor.

Fields

from: CallHierarchyItem

The item that makes the call.

from_ranges: Vec<Range>

The range at which at which the calls appears. This is relative to the caller denoted by this.from.

Trait Implementations

impl Clone for CallHierarchyIncomingCall[src]

impl Debug for CallHierarchyIncomingCall[src]

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

impl PartialEq<CallHierarchyIncomingCall> for CallHierarchyIncomingCall[src]

impl Serialize for CallHierarchyIncomingCall[src]

impl StructuralPartialEq for CallHierarchyIncomingCall[src]

Auto Trait Implementations

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.