Enum lsp_types::DocumentSymbolResponse
source · [−]pub enum DocumentSymbolResponse {
Flat(Vec<SymbolInformation>),
Nested(Vec<DocumentSymbol>),
}
Variants
Flat(Vec<SymbolInformation>)
Nested(Vec<DocumentSymbol>)
Trait Implementations
sourceimpl Clone for DocumentSymbolResponse
impl Clone for DocumentSymbolResponse
sourcefn clone(&self) -> DocumentSymbolResponse
fn clone(&self) -> DocumentSymbolResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DocumentSymbolResponse
impl Debug for DocumentSymbolResponse
sourceimpl<'de> Deserialize<'de> for DocumentSymbolResponse
impl<'de> Deserialize<'de> for DocumentSymbolResponse
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<Vec<DocumentSymbol, Global>> for DocumentSymbolResponse
impl From<Vec<DocumentSymbol, Global>> for DocumentSymbolResponse
sourcefn from(symbols: Vec<DocumentSymbol>) -> Self
fn from(symbols: Vec<DocumentSymbol>) -> Self
Converts to this type from the input type.
sourceimpl From<Vec<SymbolInformation, Global>> for DocumentSymbolResponse
impl From<Vec<SymbolInformation, Global>> for DocumentSymbolResponse
sourcefn from(info: Vec<SymbolInformation>) -> Self
fn from(info: Vec<SymbolInformation>) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<DocumentSymbolResponse> for DocumentSymbolResponse
impl PartialEq<DocumentSymbolResponse> for DocumentSymbolResponse
sourcefn eq(&self, other: &DocumentSymbolResponse) -> bool
fn eq(&self, other: &DocumentSymbolResponse) -> bool
sourceimpl Serialize for DocumentSymbolResponse
impl Serialize for DocumentSymbolResponse
impl StructuralPartialEq for DocumentSymbolResponse
Auto Trait Implementations
impl RefUnwindSafe for DocumentSymbolResponse
impl Send for DocumentSymbolResponse
impl Sync for DocumentSymbolResponse
impl Unpin for DocumentSymbolResponse
impl UnwindSafe for DocumentSymbolResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more