pub enum QStringError {
ComponentInvalid,
TooManySeparators,
}
Expand description
Errors that may arise when parsing using FromStr::from_str()
.
Variants§
ComponentInvalid
One part of the qualified string is invalid.
TooManySeparators
Only one ‘:’ is allowed.
Trait Implementations§
Source§impl Clone for QStringError
impl Clone for QStringError
Source§fn clone(&self) -> QStringError
fn clone(&self) -> QStringError
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 Debug for QStringError
impl Debug for QStringError
Auto Trait Implementations§
impl Freeze for QStringError
impl RefUnwindSafe for QStringError
impl Send for QStringError
impl Sync for QStringError
impl Unpin for QStringError
impl UnwindSafe for QStringError
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