pub struct AppListItem {
pub app_id: String,
pub app_name: String,
pub status: String,
pub user_count: u32,
pub created_at: String,
}Fields§
§app_id: String§app_name: String§status: String§user_count: u32§created_at: StringTrait Implementations§
Source§impl Debug for AppListItem
impl Debug for AppListItem
Source§impl<'de> Deserialize<'de> for AppListItem
impl<'de> Deserialize<'de> for AppListItem
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 AppListItem
impl RefUnwindSafe for AppListItem
impl Send for AppListItem
impl Sync for AppListItem
impl Unpin for AppListItem
impl UnsafeUnpin for AppListItem
impl UnwindSafe for AppListItem
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