pub struct AdminUserPageResponse {
pub items: Vec<AdminUserResponse>,
pub page: u32,
pub page_size: u32,
pub total: u64,
pub total_pages: u32,
}Fields§
§items: Vec<AdminUserResponse>§page: u32§page_size: u32§total: u64§total_pages: u32Trait Implementations§
Source§impl Clone for AdminUserPageResponse
impl Clone for AdminUserPageResponse
Source§fn clone(&self) -> AdminUserPageResponse
fn clone(&self) -> AdminUserPageResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for AdminUserPageResponse
impl ComposeSchema for AdminUserPageResponse
Source§impl Debug for AdminUserPageResponse
impl Debug for AdminUserPageResponse
Source§impl<'de> Deserialize<'de> for AdminUserPageResponse
impl<'de> Deserialize<'de> for AdminUserPageResponse
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
Source§impl Serialize for AdminUserPageResponse
impl Serialize for AdminUserPageResponse
Auto Trait Implementations§
impl Freeze for AdminUserPageResponse
impl RefUnwindSafe for AdminUserPageResponse
impl Send for AdminUserPageResponse
impl Sync for AdminUserPageResponse
impl Unpin for AdminUserPageResponse
impl UnsafeUnpin for AdminUserPageResponse
impl UnwindSafe for AdminUserPageResponse
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