pub struct ConnectionReport {
pub new_account: String,
pub direct: Vec<DirectConnection>,
pub transitive: Vec<TransitiveConnection>,
pub invalid_existing: Vec<(String, Vec<String>)>,
}Fields§
§new_account: String§direct: Vec<DirectConnection>§transitive: Vec<TransitiveConnection>§invalid_existing: Vec<(String, Vec<String>)>Trait Implementations§
Source§impl Clone for ConnectionReport
impl Clone for ConnectionReport
Source§fn clone(&self) -> ConnectionReport
fn clone(&self) -> ConnectionReport
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 ConnectionReport
impl RefUnwindSafe for ConnectionReport
impl Send for ConnectionReport
impl Sync for ConnectionReport
impl Unpin for ConnectionReport
impl UnsafeUnpin for ConnectionReport
impl UnwindSafe for ConnectionReport
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