Enum lsp2::GotoDefinitionResponse
pub enum GotoDefinitionResponse {
Scalar(Location),
Array(Vec<Location, Global>),
Link(Vec<LocationLink, Global>),
}
Expand description
GotoDefinition response can be single location, or multiple Locations or a link.
Variants§
Trait Implementations§
§impl Clone for GotoDefinitionResponse
impl Clone for GotoDefinitionResponse
§fn clone(&self) -> GotoDefinitionResponse
fn clone(&self) -> GotoDefinitionResponse
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for GotoDefinitionResponse
impl Debug for GotoDefinitionResponse
§impl<'de> Deserialize<'de> for GotoDefinitionResponse
impl<'de> Deserialize<'de> for GotoDefinitionResponse
§fn deserialize<__D>(
__deserializer: __D
) -> Result<GotoDefinitionResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<GotoDefinitionResponse, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<Location> for GotoDefinitionResponse
impl From<Location> for GotoDefinitionResponse
§fn from(location: Location) -> GotoDefinitionResponse
fn from(location: Location) -> GotoDefinitionResponse
Converts to this type from the input type.
§impl From<Vec<LocationLink, Global>> for GotoDefinitionResponse
impl From<Vec<LocationLink, Global>> for GotoDefinitionResponse
§fn from(locations: Vec<LocationLink, Global>) -> GotoDefinitionResponse
fn from(locations: Vec<LocationLink, Global>) -> GotoDefinitionResponse
Converts to this type from the input type.
§impl PartialEq<GotoDefinitionResponse> for GotoDefinitionResponse
impl PartialEq<GotoDefinitionResponse> for GotoDefinitionResponse
§fn eq(&self, other: &GotoDefinitionResponse) -> bool
fn eq(&self, other: &GotoDefinitionResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for GotoDefinitionResponse
impl Serialize for GotoDefinitionResponse
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GotoDefinitionResponse
Auto Trait Implementations§
impl RefUnwindSafe for GotoDefinitionResponse
impl Send for GotoDefinitionResponse
impl Sync for GotoDefinitionResponse
impl Unpin for GotoDefinitionResponse
impl UnwindSafe for GotoDefinitionResponse
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