Struct lsif_types::Moniker[][src]

pub struct Moniker {
    pub scheme: String,
    pub identifier: String,
    pub kind: Option<MonikerKind>,
}

The moniker vertex.

Fields

scheme: Stringidentifier: Stringkind: Option<MonikerKind>

Trait Implementations

impl Clone for Moniker[src]

impl Debug for Moniker[src]

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

impl Eq for Moniker[src]

impl From<Moniker> for Element[src]

impl PartialEq<Moniker> for Moniker[src]

impl Serialize for Moniker[src]

impl StructuralEq for Moniker[src]

impl StructuralPartialEq for Moniker[src]

Auto Trait Implementations

impl RefUnwindSafe for Moniker

impl Send for Moniker

impl Sync for Moniker

impl Unpin for Moniker

impl UnwindSafe for Moniker

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.