pub enum ExposeError {
Missing,
BadFormat(String),
BadParts {
data: String,
port: bool,
protocol: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for ExposeError
impl Clone for ExposeError
Source§fn clone(&self) -> ExposeError
fn clone(&self) -> ExposeError
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 ExposeError
impl Debug for ExposeError
Source§impl Display for ExposeError
impl Display for ExposeError
Source§impl PartialEq for ExposeError
impl PartialEq for ExposeError
impl StructuralPartialEq for ExposeError
Auto Trait Implementations§
impl Freeze for ExposeError
impl RefUnwindSafe for ExposeError
impl Send for ExposeError
impl Sync for ExposeError
impl Unpin for ExposeError
impl UnwindSafe for ExposeError
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