pub struct SignedS3UploadResponse {
pub upload_key: String,
pub urls: Vec<String>,
pub upload_expiration: Option<String>,
}Expand description
Signed S3 upload response
Fields§
§upload_key: StringUpload key to use for completion
urls: Vec<String>Pre-signed S3 URLs for upload
upload_expiration: Option<String>Expiration timestamp
Trait Implementations§
Source§impl Clone for SignedS3UploadResponse
impl Clone for SignedS3UploadResponse
Source§fn clone(&self) -> SignedS3UploadResponse
fn clone(&self) -> SignedS3UploadResponse
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 moreSource§impl Debug for SignedS3UploadResponse
impl Debug for SignedS3UploadResponse
Source§impl<'de> Deserialize<'de> for SignedS3UploadResponse
impl<'de> Deserialize<'de> for SignedS3UploadResponse
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
Auto Trait Implementations§
impl Freeze for SignedS3UploadResponse
impl RefUnwindSafe for SignedS3UploadResponse
impl Send for SignedS3UploadResponse
impl Sync for SignedS3UploadResponse
impl Unpin for SignedS3UploadResponse
impl UnsafeUnpin for SignedS3UploadResponse
impl UnwindSafe for SignedS3UploadResponse
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