pub struct BuildUpload {
pub content: Vec<u8>,
pub filename: Option<String>,
pub hash: String,
pub build_id: Option<String>,
}Expand description
A build archive to upload.
Fields§
§content: Vec<u8>The build archive content.
filename: Option<String>Names the multipart file part. Defaults to “build”.
hash: StringThe build content hash.
build_id: Option<String>Optionally pins the build id.
Auto Trait Implementations§
impl Freeze for BuildUpload
impl RefUnwindSafe for BuildUpload
impl Send for BuildUpload
impl Sync for BuildUpload
impl Unpin for BuildUpload
impl UnsafeUnpin for BuildUpload
impl UnwindSafe for BuildUpload
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