pub enum AddressFailure {
InvalidJson,
PipelineFailure,
}Expand description
Failure modes from the JSON entry points.
Variants§
InvalidJson
The input bytes were not valid UTF-8 JSON.
PipelineFailure
Defensive: foundation’s catamorphism or a resolver returned a shape violation. Unreachable for well-formed inputs.
Trait Implementations§
Source§impl Clone for AddressFailure
impl Clone for AddressFailure
Source§fn clone(&self) -> AddressFailure
fn clone(&self) -> AddressFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddressFailure
impl Debug for AddressFailure
Source§impl PartialEq for AddressFailure
impl PartialEq for AddressFailure
Source§fn eq(&self, other: &AddressFailure) -> bool
fn eq(&self, other: &AddressFailure) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AddressFailure
impl Eq for AddressFailure
impl StructuralPartialEq for AddressFailure
Auto Trait Implementations§
impl Freeze for AddressFailure
impl RefUnwindSafe for AddressFailure
impl Send for AddressFailure
impl Sync for AddressFailure
impl Unpin for AddressFailure
impl UnsafeUnpin for AddressFailure
impl UnwindSafe for AddressFailure
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