pub enum AgentError {
UnknownClient,
UnknownReader,
QueueFull,
WireRejected,
}Expand description
Agent-spezifische Error-Klassen.
Variants§
UnknownClient
Client unbekannt — Caller muss vorher register_client rufen.
UnknownReader
DataReader-Object existiert nicht.
QueueFull
Pull-Queue ist voll (DoS-Schutz).
WireRejected
Wire-Layer hat die Operation abgelehnt (z.B. ObjectId.kind passt nicht zur Operation).
Trait Implementations§
Source§impl Clone for AgentError
impl Clone for AgentError
Source§fn clone(&self) -> AgentError
fn clone(&self) -> AgentError
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 AgentError
impl Debug for AgentError
Source§impl PartialEq for AgentError
impl PartialEq for AgentError
Source§fn eq(&self, other: &AgentError) -> bool
fn eq(&self, other: &AgentError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AgentError
impl Eq for AgentError
impl StructuralPartialEq for AgentError
Auto Trait Implementations§
impl Freeze for AgentError
impl RefUnwindSafe for AgentError
impl Send for AgentError
impl Sync for AgentError
impl Unpin for AgentError
impl UnsafeUnpin for AgentError
impl UnwindSafe for AgentError
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