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