pub struct ConfigStatus {
pub error: Option<ConfigError>,
pub last_transition_time: Option<DateTime<Utc>>,
pub version: Option<u64>,
}
Expand description
Represents the configuration status.
Fields§
§error: Option<ConfigError>
The last error that occurred while processing the configuration.
last_transition_time: Option<DateTime<Utc>>
A timestamp indicating the last time the configuration has been modified from the perspective of the current actual (Edge) state of the CRD.
version: Option<u64>
The version of the Device or Asset configuration that this Status pertains to.
Trait Implementations§
Source§impl Clone for ConfigStatus
impl Clone for ConfigStatus
Source§fn clone(&self) -> ConfigStatus
fn clone(&self) -> ConfigStatus
Returns a copy 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 ConfigStatus
impl Debug for ConfigStatus
Source§impl Default for ConfigStatus
impl Default for ConfigStatus
Source§fn default() -> ConfigStatus
fn default() -> ConfigStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConfigStatus
impl PartialEq for ConfigStatus
impl StructuralPartialEq for ConfigStatus
Auto Trait Implementations§
impl Freeze for ConfigStatus
impl RefUnwindSafe for ConfigStatus
impl Send for ConfigStatus
impl Sync for ConfigStatus
impl Unpin for ConfigStatus
impl UnwindSafe for ConfigStatus
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