pub struct IncludeNodeWeight {
pub node: IncludeNode,
pub includes: Vec<Include>,
/* private fields */
}
Expand description
Represents the payload for a node in the graph.
Fields§
§node: IncludeNode
Include file associated with the graph node.
includes: Vec<Include>
Pattern matched include directives for the include file.
Trait Implementations§
Source§impl Clone for IncludeNodeWeight
impl Clone for IncludeNodeWeight
Source§fn clone(&self) -> IncludeNodeWeight
fn clone(&self) -> IncludeNodeWeight
Returns a copy of the value. Read more
1.0.0 · 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 IncludeNodeWeight
impl Debug for IncludeNodeWeight
Source§impl Default for IncludeNodeWeight
impl Default for IncludeNodeWeight
Source§fn default() -> IncludeNodeWeight
fn default() -> IncludeNodeWeight
Returns the “default value” for a type. Read more
Source§impl Display for IncludeNodeWeight
impl Display for IncludeNodeWeight
Source§impl PartialEq for IncludeNodeWeight
impl PartialEq for IncludeNodeWeight
impl Eq for IncludeNodeWeight
impl StructuralPartialEq for IncludeNodeWeight
Auto Trait Implementations§
impl Freeze for IncludeNodeWeight
impl RefUnwindSafe for IncludeNodeWeight
impl Send for IncludeNodeWeight
impl Sync for IncludeNodeWeight
impl Unpin for IncludeNodeWeight
impl UnwindSafe for IncludeNodeWeight
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,
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.