pub struct UpgradeDetails {
pub end_time: Option<DateTime<Utc>>,
pub initial_version: Option<String>,
pub start_time: Option<DateTime<Utc>>,
pub start_type: Option<String>,
pub state: Option<String>,
pub target_version: Option<String>,
}Expand description
UpgradeDetails contains detailed information of each individual upgrade operation.
This type is not used in any activity, and only used as part of another schema.
Fields§
§end_time: Option<DateTime<Utc>>The end timestamp of the upgrade.
initial_version: Option<String>The version before the upgrade.
start_time: Option<DateTime<Utc>>The start timestamp of the upgrade.
start_type: Option<String>The start type of the upgrade.
state: Option<String>Output only. The state of the upgrade.
target_version: Option<String>The version after the upgrade.
Trait Implementations§
Source§impl Clone for UpgradeDetails
impl Clone for UpgradeDetails
Source§fn clone(&self) -> UpgradeDetails
fn clone(&self) -> UpgradeDetails
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 UpgradeDetails
impl Debug for UpgradeDetails
Source§impl Default for UpgradeDetails
impl Default for UpgradeDetails
Source§fn default() -> UpgradeDetails
fn default() -> UpgradeDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpgradeDetails
impl<'de> Deserialize<'de> for UpgradeDetails
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
Source§impl Serialize for UpgradeDetails
impl Serialize for UpgradeDetails
impl Part for UpgradeDetails
Auto Trait Implementations§
impl Freeze for UpgradeDetails
impl RefUnwindSafe for UpgradeDetails
impl Send for UpgradeDetails
impl Sync for UpgradeDetails
impl Unpin for UpgradeDetails
impl UnwindSafe for UpgradeDetails
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