pub struct MemberLiveStatus {
pub channel_id: String,
pub status: WireLiveAdapterStatus,
}Expand description
One member live-channel point read — the reply shape the drain emits
(BridgeReply::MemberLiveChannelStatusReport { channel_id, status }),
carried losslessly so the serving arm does zero semantic interpretation.
channel_id echoes the RESOLVED channel: for a status(None) probe it
is the member’s active channel discovered via
live_active_channel_by_session (ADJ-P6B-2 — the reply-loss
reconciliation discovery primitive).
Fields§
§channel_id: StringThe resolved channel the status describes.
status: WireLiveAdapterStatusWire status projected from generated live-channel status authority.
Trait Implementations§
Source§impl Clone for MemberLiveStatus
impl Clone for MemberLiveStatus
Source§fn clone(&self) -> MemberLiveStatus
fn clone(&self) -> MemberLiveStatus
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 MemberLiveStatus
impl Debug for MemberLiveStatus
Source§impl PartialEq for MemberLiveStatus
impl PartialEq for MemberLiveStatus
impl StructuralPartialEq for MemberLiveStatus
Auto Trait Implementations§
impl Freeze for MemberLiveStatus
impl RefUnwindSafe for MemberLiveStatus
impl Send for MemberLiveStatus
impl Sync for MemberLiveStatus
impl Unpin for MemberLiveStatus
impl UnsafeUnpin for MemberLiveStatus
impl UnwindSafe for MemberLiveStatus
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