pub struct AgentParseError(/* private fields */);Expand description
Error returned when parsing an unsupported agent name.
Trait Implementations§
Source§impl Clone for AgentParseError
impl Clone for AgentParseError
Source§fn clone(&self) -> AgentParseError
fn clone(&self) -> AgentParseError
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 AgentParseError
impl Debug for AgentParseError
Source§impl Display for AgentParseError
impl Display for AgentParseError
Source§impl Error for AgentParseError
impl Error for AgentParseError
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()
Auto Trait Implementations§
impl Freeze for AgentParseError
impl RefUnwindSafe for AgentParseError
impl Send for AgentParseError
impl Sync for AgentParseError
impl Unpin for AgentParseError
impl UnsafeUnpin for AgentParseError
impl UnwindSafe for AgentParseError
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