pub struct TransitiveConnection {
pub from: String,
pub intermediary: String,
pub to: String,
pub hop1_instruction: String,
pub hop2_instruction: String,
}Fields§
§from: String§intermediary: String§to: String§hop1_instruction: String§hop2_instruction: StringTrait Implementations§
Source§impl Clone for TransitiveConnection
impl Clone for TransitiveConnection
Source§fn clone(&self) -> TransitiveConnection
fn clone(&self) -> TransitiveConnection
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 moreAuto Trait Implementations§
impl Freeze for TransitiveConnection
impl RefUnwindSafe for TransitiveConnection
impl Send for TransitiveConnection
impl Sync for TransitiveConnection
impl Unpin for TransitiveConnection
impl UnsafeUnpin for TransitiveConnection
impl UnwindSafe for TransitiveConnection
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