pub struct UnloadableConversation {
pub conversation_id: ConversationId,
pub class: &'static str,
pub reason: String,
}Expand description
One conversation the node refused to load, as an operator reads it.
Fields§
§conversation_id: ConversationIdConversation whose durable state could not be loaded.
class: &'static strStable refusal class, so a consumer discriminates on a field instead of
on a substring of reason — the rendered text is a diagnostic and is
allowed to move.
reason: StringThe load failure’s own text, exactly as the refusal carries it.
Trait Implementations§
Source§impl Clone for UnloadableConversation
impl Clone for UnloadableConversation
Source§fn clone(&self) -> UnloadableConversation
fn clone(&self) -> UnloadableConversation
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 UnloadableConversation
impl Debug for UnloadableConversation
impl Eq for UnloadableConversation
Source§impl PartialEq for UnloadableConversation
impl PartialEq for UnloadableConversation
Source§impl Serialize for UnloadableConversation
impl Serialize for UnloadableConversation
impl StructuralPartialEq for UnloadableConversation
Auto Trait Implementations§
impl Freeze for UnloadableConversation
impl RefUnwindSafe for UnloadableConversation
impl Send for UnloadableConversation
impl Sync for UnloadableConversation
impl Unpin for UnloadableConversation
impl UnsafeUnpin for UnloadableConversation
impl UnwindSafe for UnloadableConversation
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.