pub struct PackageGraphEdge {
pub from: String,
pub to: String,
pub kind: String,
}Fields§
§from: String§to: String§kind: StringTrait Implementations§
Source§impl Clone for PackageGraphEdge
impl Clone for PackageGraphEdge
Source§fn clone(&self) -> PackageGraphEdge
fn clone(&self) -> PackageGraphEdge
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 PackageGraphEdge
impl Debug for PackageGraphEdge
Source§impl<'de> Deserialize<'de> for PackageGraphEdge
impl<'de> Deserialize<'de> for PackageGraphEdge
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 PackageGraphEdge
Source§impl PartialEq for PackageGraphEdge
impl PartialEq for PackageGraphEdge
Source§fn eq(&self, other: &PackageGraphEdge) -> bool
fn eq(&self, other: &PackageGraphEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PackageGraphEdge
impl Serialize for PackageGraphEdge
impl StructuralPartialEq for PackageGraphEdge
Auto Trait Implementations§
impl Freeze for PackageGraphEdge
impl RefUnwindSafe for PackageGraphEdge
impl Send for PackageGraphEdge
impl Sync for PackageGraphEdge
impl Unpin for PackageGraphEdge
impl UnsafeUnpin for PackageGraphEdge
impl UnwindSafe for PackageGraphEdge
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