pub struct ArtifactUpdated {
pub name: Option<String>,
pub content: Option<String>,
pub content_hash: Option<ContentHash>,
pub metadata: Option<Value>,
}Expand description
Payload for ARTIFACT_UPDATED events (JSON merge-patch semantics).
Fields§
§name: Option<String>§content: Option<String>§content_hash: Option<ContentHash>§metadata: Option<Value>Trait Implementations§
Source§impl Clone for ArtifactUpdated
impl Clone for ArtifactUpdated
Source§fn clone(&self) -> ArtifactUpdated
fn clone(&self) -> ArtifactUpdated
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 ArtifactUpdated
impl Debug for ArtifactUpdated
Source§impl<'de> Deserialize<'de> for ArtifactUpdated
impl<'de> Deserialize<'de> for ArtifactUpdated
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 EventPayload for ArtifactUpdated
impl EventPayload for ArtifactUpdated
Auto Trait Implementations§
impl Freeze for ArtifactUpdated
impl RefUnwindSafe for ArtifactUpdated
impl Send for ArtifactUpdated
impl Sync for ArtifactUpdated
impl Unpin for ArtifactUpdated
impl UnwindSafe for ArtifactUpdated
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