pub struct SetupIssue {
pub object_name: String,
pub store: String,
pub guidance: Guidance,
}Expand description
Setup validation issue with actionable guidance.
Fields§
§object_name: StringName of the missing, invalid, or degraded resource.
store: StringStore or service that owns the resource.
guidance: GuidanceStructured remediation guidance for callers to render.
Trait Implementations§
Source§impl Clone for SetupIssue
impl Clone for SetupIssue
Source§fn clone(&self) -> SetupIssue
fn clone(&self) -> SetupIssue
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 SetupIssue
impl Debug for SetupIssue
Source§impl<'de> Deserialize<'de> for SetupIssue
impl<'de> Deserialize<'de> for SetupIssue
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 SetupIssue
impl RefUnwindSafe for SetupIssue
impl Send for SetupIssue
impl Sync for SetupIssue
impl Unpin for SetupIssue
impl UnsafeUnpin for SetupIssue
impl UnwindSafe for SetupIssue
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