pub enum AgentIdError {
Empty,
TooLong {
max: usize,
actual: usize,
},
InvalidPrefix(AgentPrefixError),
InvalidSuffix {
value: String,
reason: &'static str,
},
MissingSeparator,
TypeIdError(String),
}Expand description
Errors for agent ID parsing.
Variants§
Empty
Agent ID is empty
TooLong
Agent ID exceeds maximum length
InvalidPrefix(AgentPrefixError)
Invalid prefix
InvalidSuffix
Invalid TypeID suffix
MissingSeparator
Missing underscore separator
TypeIdError(String)
TypeID parsing failed
Trait Implementations§
Source§impl Clone for AgentIdError
impl Clone for AgentIdError
Source§fn clone(&self) -> AgentIdError
fn clone(&self) -> AgentIdError
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 AgentIdError
impl Debug for AgentIdError
Source§impl Display for AgentIdError
impl Display for AgentIdError
impl Eq for AgentIdError
Source§impl Error for AgentIdError
impl Error for AgentIdError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for AgentIdError
impl PartialEq for AgentIdError
Source§fn eq(&self, other: &AgentIdError) -> bool
fn eq(&self, other: &AgentIdError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgentIdError
Auto Trait Implementations§
impl Freeze for AgentIdError
impl RefUnwindSafe for AgentIdError
impl Send for AgentIdError
impl Sync for AgentIdError
impl Unpin for AgentIdError
impl UnsafeUnpin for AgentIdError
impl UnwindSafe for AgentIdError
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