pub struct NegotiationTreeNode {
pub parent: i64,
pub key: NegotiationKey,
pub rejected: bool,
pub itinerary: Vec<Route>,
}Fields§
§parent: i64§key: NegotiationKey§rejected: bool§itinerary: Vec<Route>Trait Implementations§
Source§impl Clone for NegotiationTreeNode
impl Clone for NegotiationTreeNode
Source§fn clone(&self) -> NegotiationTreeNode
fn clone(&self) -> NegotiationTreeNode
Returns a duplicate 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 NegotiationTreeNode
impl Debug for NegotiationTreeNode
Source§impl Default for NegotiationTreeNode
impl Default for NegotiationTreeNode
Source§impl<'de> Deserialize<'de> for NegotiationTreeNode
impl<'de> Deserialize<'de> for NegotiationTreeNode
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
Source§impl PartialEq for NegotiationTreeNode
impl PartialEq for NegotiationTreeNode
Source§impl Serialize for NegotiationTreeNode
impl Serialize for NegotiationTreeNode
impl Message for NegotiationTreeNode
impl StructuralPartialEq for NegotiationTreeNode
Auto Trait Implementations§
impl Freeze for NegotiationTreeNode
impl RefUnwindSafe for NegotiationTreeNode
impl Send for NegotiationTreeNode
impl Sync for NegotiationTreeNode
impl Unpin for NegotiationTreeNode
impl UnwindSafe for NegotiationTreeNode
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