pub enum InvalidObjectPath {
NoRoot,
ContainsInvalidCharacters,
ConsecutiveSlashes,
TrailingSlash,
}
Expand description
Error type enumerating typical ways a standard path may be an invalid object path.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InvalidObjectPath
impl RefUnwindSafe for InvalidObjectPath
impl Send for InvalidObjectPath
impl Sync for InvalidObjectPath
impl Unpin for InvalidObjectPath
impl UnwindSafe for InvalidObjectPath
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