pub struct DeployState {
pub details: Option<String>,
pub status: Option<String>,
}Expand description
[Output Only] The current state of a replica or module.
This type is not used in any activity, and only used as part of another schema.
Fields§
§details: Option<String>[Output Only] Human readable details about the current state.
status: Option<String>[Output Only] The status of the deployment. Possible values include:
- UNKNOWN
- DEPLOYING
- DEPLOYED
- DEPLOYMENT_FAILED
- DELETING
- DELETED
- DELETE_FAILED
Trait Implementations§
Source§impl Clone for DeployState
impl Clone for DeployState
Source§fn clone(&self) -> DeployState
fn clone(&self) -> DeployState
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 DeployState
impl Debug for DeployState
Source§impl Default for DeployState
impl Default for DeployState
Source§fn default() -> DeployState
fn default() -> DeployState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployState
impl<'de> Deserialize<'de> for DeployState
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 DeployState
impl Serialize for DeployState
impl Part for DeployState
Auto Trait Implementations§
impl Freeze for DeployState
impl RefUnwindSafe for DeployState
impl Send for DeployState
impl Sync for DeployState
impl Unpin for DeployState
impl UnwindSafe for DeployState
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