pub struct EntitiesPage {
pub filters: Vec<EntityFilter>,
pub offset: usize,
pub limit: usize,
pub total: usize,
pub next_offset: Option<usize>,
pub entities: Vec<Entity>,
}Fields§
§filters: Vec<EntityFilter>§offset: usize§limit: usize§total: usize§next_offset: Option<usize>§entities: Vec<Entity>Trait Implementations§
Source§impl Clone for EntitiesPage
impl Clone for EntitiesPage
Source§fn clone(&self) -> EntitiesPage
fn clone(&self) -> EntitiesPage
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 Debug for EntitiesPage
impl Debug for EntitiesPage
Auto Trait Implementations§
impl Freeze for EntitiesPage
impl RefUnwindSafe for EntitiesPage
impl Send for EntitiesPage
impl Sync for EntitiesPage
impl Unpin for EntitiesPage
impl UnsafeUnpin for EntitiesPage
impl UnwindSafe for EntitiesPage
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