pub enum AllDecodeError {
Key(String, FromUrlEncodingError),
Value(String, FromUrlEncodingError),
}
Expand description
URI decoding error on a key or a value, when calling wasm_cookie::all
.
Variants§
Key(String, FromUrlEncodingError)
URI decoding error on a key.
- The first field is the raw key.
- The second field is the URI decoding error.
Value(String, FromUrlEncodingError)
URI decoding error on a value.
- The first field is the URI decoded key corresponding to the value.
- The second field is the URI decoding error.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AllDecodeError
impl RefUnwindSafe for AllDecodeError
impl Send for AllDecodeError
impl Sync for AllDecodeError
impl Unpin for AllDecodeError
impl UnwindSafe for AllDecodeError
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