pub struct RoleReadiness {
pub role: String,
pub backend: String,
pub status: ReadinessStatus,
pub detail: String,
pub next_action: String,
}Expand description
One role’s readiness row.
Fields§
§role: String§backend: String§status: ReadinessStatus§detail: String§next_action: StringOperator-facing next action (install binary, login, fix model, …).
Trait Implementations§
Source§impl Clone for RoleReadiness
impl Clone for RoleReadiness
Source§fn clone(&self) -> RoleReadiness
fn clone(&self) -> RoleReadiness
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 RoleReadiness
impl Debug for RoleReadiness
Source§impl<'de> Deserialize<'de> for RoleReadiness
impl<'de> Deserialize<'de> for RoleReadiness
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
impl Eq for RoleReadiness
Source§impl PartialEq for RoleReadiness
impl PartialEq for RoleReadiness
Source§impl Serialize for RoleReadiness
impl Serialize for RoleReadiness
impl StructuralPartialEq for RoleReadiness
Auto Trait Implementations§
impl Freeze for RoleReadiness
impl RefUnwindSafe for RoleReadiness
impl Send for RoleReadiness
impl Sync for RoleReadiness
impl Unpin for RoleReadiness
impl UnsafeUnpin for RoleReadiness
impl UnwindSafe for RoleReadiness
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