pub struct UploadResult {
pub url: String,
pub size_bytes: u64,
pub content_type: String,
pub destination: String,
}Expand description
Outcome of a successful upload — what the proxy returns to the CLI.
Fields§
§url: String§size_bytes: u64§content_type: String§destination: StringWhich configured destination key was used.
Trait Implementations§
Auto 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§
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