pub struct FileCreatePresignedUrlParams {
pub filename: String,
pub md5: String,
pub mimetype: String,
pub tool_slug: String,
pub toolkit_slug: String,
}Expand description
Request payload for creating a file upload request.
Fields§
§filename: StringFile name.
md5: StringMD5 checksum.
mimetype: StringMIME type.
tool_slug: StringTool slug.
toolkit_slug: StringToolkit slug.
Trait Implementations§
Source§impl Clone for FileCreatePresignedUrlParams
impl Clone for FileCreatePresignedUrlParams
Source§fn clone(&self) -> FileCreatePresignedUrlParams
fn clone(&self) -> FileCreatePresignedUrlParams
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 FileCreatePresignedUrlParams
impl Debug for FileCreatePresignedUrlParams
Source§impl<'de> Deserialize<'de> for FileCreatePresignedUrlParams
impl<'de> Deserialize<'de> for FileCreatePresignedUrlParams
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 FileCreatePresignedUrlParams
impl RefUnwindSafe for FileCreatePresignedUrlParams
impl Send for FileCreatePresignedUrlParams
impl Sync for FileCreatePresignedUrlParams
impl Unpin for FileCreatePresignedUrlParams
impl UnsafeUnpin for FileCreatePresignedUrlParams
impl UnwindSafe for FileCreatePresignedUrlParams
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