pub struct HTTPResponseData {
pub media_type: i32,
pub directories: Option<String>,
pub path: Option<String>,
pub start: Option<i32>,
pub count: Option<i32>,
pub list: Option<String>,
}Expand description
Response json data format
Fields§
§media_type: i32§directories: Option<String>§path: Option<String>§start: Option<i32>§count: Option<i32>§list: Option<String>Trait Implementations§
Source§impl Debug for HTTPResponseData
impl Debug for HTTPResponseData
Source§impl<'de> Deserialize<'de> for HTTPResponseData
impl<'de> Deserialize<'de> for HTTPResponseData
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 HTTPResponseData
impl RefUnwindSafe for HTTPResponseData
impl Send for HTTPResponseData
impl Sync for HTTPResponseData
impl Unpin for HTTPResponseData
impl UnsafeUnpin for HTTPResponseData
impl UnwindSafe for HTTPResponseData
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