pub struct GetFilesInformationsResponse {
pub file_code: String,
pub file_name: String,
pub file_size: usize,
pub available_uts: bool,
pub need_premium: bool,
pub error: Option<GetFilesInformationsError>,
}Expand description
Response
Fields§
§file_code: String§file_name: String§file_size: usize§available_uts: bool§error: Option<GetFilesInformationsError>Trait Implementations§
Source§impl Debug for GetFilesInformationsResponse
impl Debug for GetFilesInformationsResponse
Source§impl<'de> Deserialize<'de> for GetFilesInformationsResponse
impl<'de> Deserialize<'de> for GetFilesInformationsResponse
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 GetFilesInformationsResponse
impl RefUnwindSafe for GetFilesInformationsResponse
impl Send for GetFilesInformationsResponse
impl Sync for GetFilesInformationsResponse
impl Unpin for GetFilesInformationsResponse
impl UnwindSafe for GetFilesInformationsResponse
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