pub enum FaucetEventParseError<'a> {
UnableToSplit,
InvalidString(&'a str),
SerdeError {
err: Error,
str: &'a str,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FaucetEventParseError<'a>
impl<'a> !RefUnwindSafe for FaucetEventParseError<'a>
impl<'a> Send for FaucetEventParseError<'a>
impl<'a> Sync for FaucetEventParseError<'a>
impl<'a> Unpin for FaucetEventParseError<'a>
impl<'a> !UnwindSafe for FaucetEventParseError<'a>
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