pub struct LocalSessionListing {
pub local: HashMap<String, Vec<LocalSessionView>>,
pub federation_only: Vec<FederationOnlySessionView>,
}Expand description
Result shape for wire session list-local. local is grouped by
the local-relay URL so output can render each cluster of mutually-
reachable sister sessions together. federation_only lists the rest.
Fields§
§local: HashMap<String, Vec<LocalSessionView>>§federation_only: Vec<FederationOnlySessionView>Trait Implementations§
Source§impl Clone for LocalSessionListing
impl Clone for LocalSessionListing
Source§fn clone(&self) -> LocalSessionListing
fn clone(&self) -> LocalSessionListing
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 LocalSessionListing
impl Debug for LocalSessionListing
Auto Trait Implementations§
impl Freeze for LocalSessionListing
impl RefUnwindSafe for LocalSessionListing
impl Send for LocalSessionListing
impl Sync for LocalSessionListing
impl Unpin for LocalSessionListing
impl UnsafeUnpin for LocalSessionListing
impl UnwindSafe for LocalSessionListing
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