pub enum ClientResponseKind {
Success,
Error,
Other,
}Expand description
HTTP response class observed after bounded authenticated transport.
Variants§
Success
A 2xx response requiring operation success-policy validation.
Error
A 4xx or 5xx response admitted by the raw error policy.
Other
An informational or redirect status that is neither success nor error.
Trait Implementations§
Source§impl Clone for ClientResponseKind
impl Clone for ClientResponseKind
Source§fn clone(&self) -> ClientResponseKind
fn clone(&self) -> ClientResponseKind
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 moreimpl Copy for ClientResponseKind
Source§impl Debug for ClientResponseKind
impl Debug for ClientResponseKind
impl Eq for ClientResponseKind
Source§impl PartialEq for ClientResponseKind
impl PartialEq for ClientResponseKind
impl StructuralPartialEq for ClientResponseKind
Auto Trait Implementations§
impl Freeze for ClientResponseKind
impl RefUnwindSafe for ClientResponseKind
impl Send for ClientResponseKind
impl Sync for ClientResponseKind
impl Unpin for ClientResponseKind
impl UnsafeUnpin for ClientResponseKind
impl UnwindSafe for ClientResponseKind
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