pub enum ImplementationPartialResponse {
LocationList(Vec<Location>),
DefinitionLinkList(Vec<DefinitionLink>),
}Variants§
Trait Implementations§
Source§impl Clone for ImplementationPartialResponse
impl Clone for ImplementationPartialResponse
Source§fn clone(&self) -> ImplementationPartialResponse
fn clone(&self) -> ImplementationPartialResponse
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<'de> Deserialize<'de> for ImplementationPartialResponse
impl<'de> Deserialize<'de> for ImplementationPartialResponse
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<Vec<LocationLink>> for ImplementationPartialResponse
impl From<Vec<LocationLink>> for ImplementationPartialResponse
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 ImplementationPartialResponse
impl Hash for ImplementationPartialResponse
Source§impl PartialEq for ImplementationPartialResponse
impl PartialEq for ImplementationPartialResponse
Source§fn eq(&self, other: &ImplementationPartialResponse) -> bool
fn eq(&self, other: &ImplementationPartialResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ImplementationPartialResponse
impl StructuralPartialEq for ImplementationPartialResponse
Auto Trait Implementations§
impl Freeze for ImplementationPartialResponse
impl RefUnwindSafe for ImplementationPartialResponse
impl Send for ImplementationPartialResponse
impl Sync for ImplementationPartialResponse
impl Unpin for ImplementationPartialResponse
impl UnsafeUnpin for ImplementationPartialResponse
impl UnwindSafe for ImplementationPartialResponse
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