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