pub struct DownloadCdnRequest<'a> {
pub app_id: &'a str,
pub aes_key: &'a str,
pub file_id: &'a str,
pub type: &'a str,
pub total_size: &'a str,
pub suffix: &'a str,
}Fields§
§app_id: &'a str§aes_key: &'a str§file_id: &'a str§type: &'a str§total_size: &'a str§suffix: &'a strTrait Implementations§
Source§impl<'a> Clone for DownloadCdnRequest<'a>
impl<'a> Clone for DownloadCdnRequest<'a>
Source§fn clone(&self) -> DownloadCdnRequest<'a>
fn clone(&self) -> DownloadCdnRequest<'a>
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<'a> Debug for DownloadCdnRequest<'a>
impl<'a> Debug for DownloadCdnRequest<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for DownloadCdnRequest<'a>
impl<'de: 'a, 'a> Deserialize<'de> for DownloadCdnRequest<'a>
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<'a> Freeze for DownloadCdnRequest<'a>
impl<'a> RefUnwindSafe for DownloadCdnRequest<'a>
impl<'a> Send for DownloadCdnRequest<'a>
impl<'a> Sync for DownloadCdnRequest<'a>
impl<'a> Unpin for DownloadCdnRequest<'a>
impl<'a> UnwindSafe for DownloadCdnRequest<'a>
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