pub struct GetUploadUrlParams {
pub filekey: String,
pub media_type: i32,
pub to_user_id: String,
pub rawsize: usize,
pub rawfilemd5: String,
pub filesize: usize,
pub thumb_rawsize: Option<usize>,
pub thumb_rawfilemd5: Option<String>,
pub thumb_filesize: Option<usize>,
pub no_need_thumb: bool,
pub aeskey: String,
}Expand description
GetUploadUrl request parameters.
Fields§
§filekey: String§media_type: i32§to_user_id: String§rawsize: usize§rawfilemd5: String§filesize: usize§thumb_rawsize: Option<usize>§thumb_rawfilemd5: Option<String>§thumb_filesize: Option<usize>§no_need_thumb: bool§aeskey: StringAuto Trait Implementations§
impl Freeze for GetUploadUrlParams
impl RefUnwindSafe for GetUploadUrlParams
impl Send for GetUploadUrlParams
impl Sync for GetUploadUrlParams
impl Unpin for GetUploadUrlParams
impl UnsafeUnpin for GetUploadUrlParams
impl UnwindSafe for GetUploadUrlParams
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