Enum lsp_types::UniquenessLevel[][src]

pub enum UniquenessLevel {
    Document,
    Project,
    Group,
    Scheme,
    Global,
}

Moniker uniqueness level to define scope of the moniker.

Variants

Document

The moniker is only unique inside a document

Project

The moniker is unique inside a project for which a dump got created

Group

The moniker is unique inside the group to which a project belongs

Scheme

The moniker is unique inside the moniker scheme.

Global

The moniker is globally unique

Trait Implementations

impl Clone for UniquenessLevel[src]

impl Copy for UniquenessLevel[src]

impl Debug for UniquenessLevel[src]

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

impl Eq for UniquenessLevel[src]

impl PartialEq<UniquenessLevel> for UniquenessLevel[src]

impl Serialize for UniquenessLevel[src]

impl StructuralEq for UniquenessLevel[src]

impl StructuralPartialEq for UniquenessLevel[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.