pub struct UploadResult {
pub url: String,
pub sha256: String,
}Expand description
Result of uploading a payload to external storage.
Fields§
§url: StringCaller-fetchable URL for the payload (typically a pre-signed URL).
sha256: StringSHA-256 of the raw IPC bytes, hex-lowercased.
Trait Implementations§
Source§impl Clone for UploadResult
impl Clone for UploadResult
Source§fn clone(&self) -> UploadResult
fn clone(&self) -> UploadResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UploadResult
impl RefUnwindSafe for UploadResult
impl Send for UploadResult
impl Sync for UploadResult
impl Unpin for UploadResult
impl UnsafeUnpin for UploadResult
impl UnwindSafe for UploadResult
Blanket Implementations§
impl<T> Allocation for T
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