pub struct DeploymentStatusEvent(pub DeploymentStatusCreated);
Expand description
DeploymentStatusEvent
JSON schema
{
"oneOf": [
{
"$ref": "#/definitions/deployment_status$created"
}
]
}
Tuple Fields§
§0: DeploymentStatusCreated
Trait Implementations§
Source§impl Clone for DeploymentStatusEvent
impl Clone for DeploymentStatusEvent
Source§fn clone(&self) -> DeploymentStatusEvent
fn clone(&self) -> DeploymentStatusEvent
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 DeploymentStatusEvent
impl Debug for DeploymentStatusEvent
Source§impl Deref for DeploymentStatusEvent
impl Deref for DeploymentStatusEvent
Source§type Target = DeploymentStatusCreated
type Target = DeploymentStatusCreated
The resulting type after dereferencing.
Source§fn deref(&self) -> &DeploymentStatusCreated
fn deref(&self) -> &DeploymentStatusCreated
Dereferences the value.
Source§impl<'de> Deserialize<'de> for DeploymentStatusEvent
impl<'de> Deserialize<'de> for DeploymentStatusEvent
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 From<&DeploymentStatusEvent> for DeploymentStatusEvent
impl From<&DeploymentStatusEvent> for DeploymentStatusEvent
Source§fn from(value: &DeploymentStatusEvent) -> Self
fn from(value: &DeploymentStatusEvent) -> Self
Converts to this type from the input type.
Source§impl From<DeploymentStatusCreated> for DeploymentStatusEvent
impl From<DeploymentStatusCreated> for DeploymentStatusEvent
Source§fn from(value: DeploymentStatusCreated) -> Self
fn from(value: DeploymentStatusCreated) -> Self
Converts to this type from the input type.
Source§impl From<DeploymentStatusEvent> for DeploymentStatusCreated
impl From<DeploymentStatusEvent> for DeploymentStatusCreated
Source§fn from(value: DeploymentStatusEvent) -> Self
fn from(value: DeploymentStatusEvent) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeploymentStatusEvent
impl RefUnwindSafe for DeploymentStatusEvent
impl Send for DeploymentStatusEvent
impl Sync for DeploymentStatusEvent
impl Unpin for DeploymentStatusEvent
impl UnwindSafe for DeploymentStatusEvent
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