pub struct ToolVersionSupportedCondition {
pub maintenance_mode_time: Option<DateTime<Utc>>,
pub status: Option<bool>,
pub support_expiration_time: Option<DateTime<Utc>>,
pub tool_version_support_state: Option<String>,
}Expand description
ToolVersionSupportedCondition contains information about when support for the release’s version of a Tool ends.
This type is not used in any activity, and only used as part of another schema.
Fields§
§maintenance_mode_time: Option<DateTime<Utc>>Output only. The time at which this release’s version of the Tool will enter maintenance mode.
status: Option<bool>Output only. True if the version of Tool used by this release is supported.
support_expiration_time: Option<DateTime<Utc>>Output only. The time at which this release’s version of the Tool will no longer be supported.
tool_version_support_state: Option<String>Output only. The Tool support state for this release’s version of the Tool.
Trait Implementations§
Source§impl Clone for ToolVersionSupportedCondition
impl Clone for ToolVersionSupportedCondition
Source§fn clone(&self) -> ToolVersionSupportedCondition
fn clone(&self) -> ToolVersionSupportedCondition
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 Default for ToolVersionSupportedCondition
impl Default for ToolVersionSupportedCondition
Source§fn default() -> ToolVersionSupportedCondition
fn default() -> ToolVersionSupportedCondition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolVersionSupportedCondition
impl<'de> Deserialize<'de> for ToolVersionSupportedCondition
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 Part for ToolVersionSupportedCondition
Auto Trait Implementations§
impl Freeze for ToolVersionSupportedCondition
impl RefUnwindSafe for ToolVersionSupportedCondition
impl Send for ToolVersionSupportedCondition
impl Sync for ToolVersionSupportedCondition
impl Unpin for ToolVersionSupportedCondition
impl UnwindSafe for ToolVersionSupportedCondition
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