pub enum DocumentSymbolResponse {
Flat(Vec<SymbolInformation>),
Nested(Vec<DocumentSymbol>),
}
Variants§
Flat(Vec<SymbolInformation>)
Nested(Vec<DocumentSymbol>)
Trait Implementations§
Source§impl Debug for DocumentSymbolResponse
impl Debug for DocumentSymbolResponse
Source§impl<'de> Deserialize<'de> for DocumentSymbolResponse
impl<'de> Deserialize<'de> for DocumentSymbolResponse
Source§fn 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
Source§impl PartialEq for DocumentSymbolResponse
impl PartialEq for DocumentSymbolResponse
Source§impl Serialize for DocumentSymbolResponse
impl Serialize for DocumentSymbolResponse
impl StructuralPartialEq for DocumentSymbolResponse
Auto Trait Implementations§
impl Freeze for DocumentSymbolResponse
impl RefUnwindSafe for DocumentSymbolResponse
impl Send for DocumentSymbolResponse
impl Sync for DocumentSymbolResponse
impl Unpin for DocumentSymbolResponse
impl UnwindSafe for DocumentSymbolResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more