pub struct ProposalEdge {
pub from_node_id: String,
pub to_node_id: String,
}Expand description
An explicit control-flow dependency: to_node_id may not start before
from_node_id reaches a terminal status.
Fields§
§from_node_id: String§to_node_id: StringTrait Implementations§
Source§impl Clone for ProposalEdge
impl Clone for ProposalEdge
Source§fn clone(&self) -> ProposalEdge
fn clone(&self) -> ProposalEdge
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 ProposalEdge
impl Debug for ProposalEdge
Source§impl<'de> Deserialize<'de> for ProposalEdge
impl<'de> Deserialize<'de> for ProposalEdge
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 ProposalEdge
Source§impl PartialEq for ProposalEdge
impl PartialEq for ProposalEdge
Source§impl Serialize for ProposalEdge
impl Serialize for ProposalEdge
impl StructuralPartialEq for ProposalEdge
Auto Trait Implementations§
impl Freeze for ProposalEdge
impl RefUnwindSafe for ProposalEdge
impl Send for ProposalEdge
impl Sync for ProposalEdge
impl Unpin for ProposalEdge
impl UnsafeUnpin for ProposalEdge
impl UnwindSafe for ProposalEdge
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