pub struct ArtifactNotification {
pub artifact_id: Uuid,
pub download_url: String,
pub sha256: String,
}Expand description
Notification that a new artifact is available.
Fields§
§artifact_id: Uuid§download_url: String§sha256: StringTrait Implementations§
Source§impl Clone for ArtifactNotification
impl Clone for ArtifactNotification
Source§fn clone(&self) -> ArtifactNotification
fn clone(&self) -> ArtifactNotification
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 moreAuto Trait Implementations§
impl Freeze for ArtifactNotification
impl RefUnwindSafe for ArtifactNotification
impl Send for ArtifactNotification
impl Sync for ArtifactNotification
impl Unpin for ArtifactNotification
impl UnsafeUnpin for ArtifactNotification
impl UnwindSafe for ArtifactNotification
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