pub enum DestinationEntry {
Package {
name: String,
},
Local {
path: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for DestinationEntry
impl Clone for DestinationEntry
Source§fn clone(&self) -> DestinationEntry
fn clone(&self) -> DestinationEntry
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 DestinationEntry
impl Debug for DestinationEntry
Source§impl<'de> Deserialize<'de> for DestinationEntry
impl<'de> Deserialize<'de> for DestinationEntry
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
impl Eq for DestinationEntry
Source§impl PartialEq for DestinationEntry
impl PartialEq for DestinationEntry
Source§impl Serialize for DestinationEntry
impl Serialize for DestinationEntry
impl StructuralPartialEq for DestinationEntry
Auto Trait Implementations§
impl Freeze for DestinationEntry
impl RefUnwindSafe for DestinationEntry
impl Send for DestinationEntry
impl Sync for DestinationEntry
impl Unpin for DestinationEntry
impl UnsafeUnpin for DestinationEntry
impl UnwindSafe for DestinationEntry
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