pub enum MqUriError {
MissingScheme,
InvalidPath,
InvalidPartition,
}Expand description
Errors that can occur when parsing an MqUri.
Variants§
MissingScheme
Missing the fabric-mq:// scheme prefix.
InvalidPath
The path portion is empty or missing pool/topic segments.
InvalidPartition
The partition segment is not a valid u32.
Trait Implementations§
Source§impl Clone for MqUriError
impl Clone for MqUriError
Source§fn clone(&self) -> MqUriError
fn clone(&self) -> MqUriError
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 MqUriError
impl Debug for MqUriError
Source§impl Display for MqUriError
impl Display for MqUriError
Source§impl PartialEq for MqUriError
impl PartialEq for MqUriError
impl Eq for MqUriError
impl StructuralPartialEq for MqUriError
Auto Trait Implementations§
impl Freeze for MqUriError
impl RefUnwindSafe for MqUriError
impl Send for MqUriError
impl Sync for MqUriError
impl Unpin for MqUriError
impl UnwindSafe for MqUriError
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