pub struct PutArtifactChunk {
pub upload_id: ArtifactUploadId,
pub offset: ArtifactByteOffset,
pub bytes: Vec<u8>,
pub chunk_digest: ArtifactDigest,
}Expand description
One bounded, independently verified upload write.
Fields§
§upload_id: ArtifactUploadId§offset: ArtifactByteOffset§bytes: Vec<u8>§chunk_digest: ArtifactDigestTrait Implementations§
Source§impl Clone for PutArtifactChunk
impl Clone for PutArtifactChunk
Source§impl Debug for PutArtifactChunk
impl Debug for PutArtifactChunk
Source§impl<'de> Deserialize<'de> for PutArtifactChunk
impl<'de> Deserialize<'de> for PutArtifactChunk
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
impl Eq for PutArtifactChunk
Source§impl PartialEq for PutArtifactChunk
impl PartialEq for PutArtifactChunk
Source§impl Serialize for PutArtifactChunk
impl Serialize for PutArtifactChunk
impl StructuralPartialEq for PutArtifactChunk
Auto Trait Implementations§
impl Freeze for PutArtifactChunk
impl RefUnwindSafe for PutArtifactChunk
impl Send for PutArtifactChunk
impl Sync for PutArtifactChunk
impl Unpin for PutArtifactChunk
impl UnsafeUnpin for PutArtifactChunk
impl UnwindSafe for PutArtifactChunk
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