pub struct GetArtifactResponse {
pub metadata: ArtifactMetadata,
pub content: Vec<u8>,
}Expand description
Response from retrieving an artifact
Fields§
§metadata: ArtifactMetadataArtifact metadata
content: Vec<u8>Decompressed content bytes
Trait Implementations§
Source§impl Clone for GetArtifactResponse
impl Clone for GetArtifactResponse
Source§fn clone(&self) -> GetArtifactResponse
fn clone(&self) -> GetArtifactResponse
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 GetArtifactResponse
impl RefUnwindSafe for GetArtifactResponse
impl Send for GetArtifactResponse
impl Sync for GetArtifactResponse
impl Unpin for GetArtifactResponse
impl UnsafeUnpin for GetArtifactResponse
impl UnwindSafe for GetArtifactResponse
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