pub struct UnloadableConversationsStatus {
pub participant_installed: bool,
pub count: usize,
pub conversations: Vec<UnloadableConversation>,
}Expand description
The body served by GET /unloadable-conversations.
Fields§
§participant_installed: boolWhether a participant record is attached to this server at all.
A node with no participant configured and a node whose participant has
refused nothing both report count: 0; this field is the only thing
separating them. Without it a zero reads as a clean node when it may
instead mean the surface is looking at nothing.
count: usizeHow many conversations are refused right now.
conversations: Vec<UnloadableConversation>The refused conversations, in conversation-id order.
Trait Implementations§
Source§impl Clone for UnloadableConversationsStatus
impl Clone for UnloadableConversationsStatus
Source§fn clone(&self) -> UnloadableConversationsStatus
fn clone(&self) -> UnloadableConversationsStatus
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 moreimpl Eq for UnloadableConversationsStatus
impl StructuralPartialEq for UnloadableConversationsStatus
Auto Trait Implementations§
impl Freeze for UnloadableConversationsStatus
impl RefUnwindSafe for UnloadableConversationsStatus
impl Send for UnloadableConversationsStatus
impl Sync for UnloadableConversationsStatus
impl Unpin for UnloadableConversationsStatus
impl UnsafeUnpin for UnloadableConversationsStatus
impl UnwindSafe for UnloadableConversationsStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.