pub enum ImplementationResponse {
Definition(Definition),
DefinitionLinkList(Vec<DefinitionLink>),
}Variants§
Definition(Definition)
DefinitionLinkList(Vec<DefinitionLink>)
Trait Implementations§
Source§impl Clone for ImplementationResponse
impl Clone for ImplementationResponse
Source§fn clone(&self) -> ImplementationResponse
fn clone(&self) -> ImplementationResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImplementationResponse
impl Debug for ImplementationResponse
Source§impl<'de> Deserialize<'de> for ImplementationResponse
impl<'de> Deserialize<'de> for ImplementationResponse
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 From<Definition> for ImplementationResponse
impl From<Definition> for ImplementationResponse
Source§fn from(v: Definition) -> Self
fn from(v: Definition) -> Self
Converts to this type from the input type.
Source§impl From<Vec<LocationLink>> for ImplementationResponse
impl From<Vec<LocationLink>> for ImplementationResponse
Source§fn from(v: Vec<DefinitionLink>) -> Self
fn from(v: Vec<DefinitionLink>) -> Self
Converts to this type from the input type.
Source§impl Hash for ImplementationResponse
impl Hash for ImplementationResponse
Source§impl PartialEq for ImplementationResponse
impl PartialEq for ImplementationResponse
Source§fn eq(&self, other: &ImplementationResponse) -> bool
fn eq(&self, other: &ImplementationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImplementationResponse
impl Serialize for ImplementationResponse
impl Eq for ImplementationResponse
impl StructuralPartialEq for ImplementationResponse
Auto Trait Implementations§
impl Freeze for ImplementationResponse
impl RefUnwindSafe for ImplementationResponse
impl Send for ImplementationResponse
impl Sync for ImplementationResponse
impl Unpin for ImplementationResponse
impl UnsafeUnpin for ImplementationResponse
impl UnwindSafe for ImplementationResponse
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