pub enum AccessiblePrimitiveConversionError {
ParseError(<i32 as FromStr>::Err),
ObjectConversionError(ObjectPathConversionError),
NoPathId,
InvalidPath,
NoFirstSectionOfSender,
NoSecondSectionOfSender,
NoSender,
ErrSender,
}Variants§
ParseError(<i32 as FromStr>::Err)
ObjectConversionError(ObjectPathConversionError)
NoPathId
InvalidPath
NoFirstSectionOfSender
NoSecondSectionOfSender
NoSender
ErrSender
Trait Implementations§
Source§impl Clone for AccessiblePrimitiveConversionError
impl Clone for AccessiblePrimitiveConversionError
Source§fn clone(&self) -> AccessiblePrimitiveConversionError
fn clone(&self) -> AccessiblePrimitiveConversionError
Returns a duplicate 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 Error for AccessiblePrimitiveConversionError
impl Error for AccessiblePrimitiveConversionError
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 From<AccessiblePrimitiveConversionError> for OdiliaError
impl From<AccessiblePrimitiveConversionError> for OdiliaError
Source§fn from(apc_error: AccessiblePrimitiveConversionError) -> Self
fn from(apc_error: AccessiblePrimitiveConversionError) -> Self
Converts to this type from the input type.
Source§impl From<ObjectPathConversionError> for AccessiblePrimitiveConversionError
impl From<ObjectPathConversionError> for AccessiblePrimitiveConversionError
Source§fn from(object_conversion_error: ObjectPathConversionError) -> Self
fn from(object_conversion_error: ObjectPathConversionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AccessiblePrimitiveConversionError
impl RefUnwindSafe for AccessiblePrimitiveConversionError
impl Send for AccessiblePrimitiveConversionError
impl Sync for AccessiblePrimitiveConversionError
impl Unpin for AccessiblePrimitiveConversionError
impl UnwindSafe for AccessiblePrimitiveConversionError
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