pub enum ObjectPathConversionError {
NoIdAvailable,
ParseError(<i64 as FromStr>::Err),
}
Variants§
Trait Implementations§
source§impl Clone for ObjectPathConversionError
impl Clone for ObjectPathConversionError
source§fn clone(&self) -> ObjectPathConversionError
fn clone(&self) -> ObjectPathConversionError
Returns a copy of the value. Read more
1.0.0 · 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 ObjectPathConversionError
impl Debug for ObjectPathConversionError
source§impl Display for ObjectPathConversionError
impl Display for ObjectPathConversionError
source§impl Error for ObjectPathConversionError
impl Error for ObjectPathConversionError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<ObjectPathConversionError> for AtspiError
impl From<ObjectPathConversionError> for AtspiError
source§fn from(e: ObjectPathConversionError) -> AtspiError
fn from(e: ObjectPathConversionError) -> AtspiError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ObjectPathConversionError
impl RefUnwindSafe for ObjectPathConversionError
impl Send for ObjectPathConversionError
impl Sync for ObjectPathConversionError
impl Unpin for ObjectPathConversionError
impl UnwindSafe for ObjectPathConversionError
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