pub struct HelmErrorDetail {
pub message: String,
pub error_type: String,
pub code: String,
pub reason_code: ReasonCode,
pub details: Option<HashMap<String, Value>>,
}Fields§
§message: String§error_type: String§code: String§reason_code: ReasonCode§details: Option<HashMap<String, Value>>Trait Implementations§
Source§impl Clone for HelmErrorDetail
impl Clone for HelmErrorDetail
Source§fn clone(&self) -> HelmErrorDetail
fn clone(&self) -> HelmErrorDetail
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 HelmErrorDetail
impl Debug for HelmErrorDetail
Source§impl<'de> Deserialize<'de> for HelmErrorDetail
impl<'de> Deserialize<'de> for HelmErrorDetail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HelmErrorDetail
impl RefUnwindSafe for HelmErrorDetail
impl Send for HelmErrorDetail
impl Sync for HelmErrorDetail
impl Unpin for HelmErrorDetail
impl UnsafeUnpin for HelmErrorDetail
impl UnwindSafe for HelmErrorDetail
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