pub struct AppListResponse {
pub items: Vec<AppListItem>,
pub total: u32,
pub page: u32,
pub page_size: u32,
}Fields§
§items: Vec<AppListItem>§total: u32§page: u32§page_size: u32Trait Implementations§
Source§impl Debug for AppListResponse
impl Debug for AppListResponse
Source§impl<'de> Deserialize<'de> for AppListResponse
impl<'de> Deserialize<'de> for AppListResponse
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 AppListResponse
impl RefUnwindSafe for AppListResponse
impl Send for AppListResponse
impl Sync for AppListResponse
impl Unpin for AppListResponse
impl UnsafeUnpin for AppListResponse
impl UnwindSafe for AppListResponse
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