Enum lsp::jsonrpc::Nullable[][src]

pub enum Nullable<T> {
    None,
    Some(T),
}

Variants

Trait Implementations

impl<T: Debug> Debug for Nullable<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Serialize> Serialize for Nullable<T>
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl<T> Send for Nullable<T> where
    T: Send

impl<T> Sync for Nullable<T> where
    T: Sync