pub struct OmittedEdges {
pub kind: String,
pub omitted: usize,
}Expand description
How many edges of one kind were left out of a truncated direction.
Fields§
§kind: StringEdge kind token (e.g. defines).
omitted: usizeHow many edges of that kind the bundle does not carry.
Trait Implementations§
Source§impl Clone for OmittedEdges
impl Clone for OmittedEdges
Source§fn clone(&self) -> OmittedEdges
fn clone(&self) -> OmittedEdges
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 OmittedEdges
impl Debug for OmittedEdges
Source§impl<'de> Deserialize<'de> for OmittedEdges
impl<'de> Deserialize<'de> for OmittedEdges
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 OmittedEdges
Source§impl PartialEq for OmittedEdges
impl PartialEq for OmittedEdges
Source§impl Serialize for OmittedEdges
impl Serialize for OmittedEdges
impl StructuralPartialEq for OmittedEdges
Auto Trait Implementations§
impl Freeze for OmittedEdges
impl RefUnwindSafe for OmittedEdges
impl Send for OmittedEdges
impl Sync for OmittedEdges
impl Unpin for OmittedEdges
impl UnsafeUnpin for OmittedEdges
impl UnwindSafe for OmittedEdges
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.