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