pub struct ArtifactDownloadedResponse {
pub artifact_id: Uuid,
pub success: bool,
pub error: Option<String>,
}Expand description
Response to send back to the control plane after downloading an artifact.
Fields§
§artifact_id: Uuid§success: bool§error: Option<String>Trait Implementations§
Source§impl Clone for ArtifactDownloadedResponse
impl Clone for ArtifactDownloadedResponse
Source§fn clone(&self) -> ArtifactDownloadedResponse
fn clone(&self) -> ArtifactDownloadedResponse
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 ArtifactDownloadedResponse
impl RefUnwindSafe for ArtifactDownloadedResponse
impl Send for ArtifactDownloadedResponse
impl Sync for ArtifactDownloadedResponse
impl Unpin for ArtifactDownloadedResponse
impl UnsafeUnpin for ArtifactDownloadedResponse
impl UnwindSafe for ArtifactDownloadedResponse
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