pub struct ErrorHttpResponse {
pub status: u16,
pub code: String,
pub category: ErrorCategory,
pub message: String,
pub visibility: Visibility,
pub hints: Vec<String>,
}Fields§
§status: u16§code: String§category: ErrorCategory§message: String§visibility: Visibility§hints: Vec<String>Trait Implementations§
Source§impl Clone for ErrorHttpResponse
impl Clone for ErrorHttpResponse
Source§fn clone(&self) -> ErrorHttpResponse
fn clone(&self) -> ErrorHttpResponse
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 ErrorHttpResponse
impl Debug for ErrorHttpResponse
Source§impl PartialEq for ErrorHttpResponse
impl PartialEq for ErrorHttpResponse
impl Eq for ErrorHttpResponse
impl StructuralPartialEq for ErrorHttpResponse
Auto Trait Implementations§
impl Freeze for ErrorHttpResponse
impl RefUnwindSafe for ErrorHttpResponse
impl Send for ErrorHttpResponse
impl Sync for ErrorHttpResponse
impl Unpin for ErrorHttpResponse
impl UnsafeUnpin for ErrorHttpResponse
impl UnwindSafe for ErrorHttpResponse
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