pub struct PredictionPagination {
pub end: i64,
pub has_next: bool,
pub start: i64,
pub total: i64,
}Fields§
§end: i64Constraint: minimum=0
has_next: bool§start: i64Constraint: minimum=0
total: i64Constraint: minimum=0
Trait Implementations§
Source§impl Clone for PredictionPagination
impl Clone for PredictionPagination
Source§fn clone(&self) -> PredictionPagination
fn clone(&self) -> PredictionPagination
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 PredictionPagination
impl Debug for PredictionPagination
Source§impl<'de> Deserialize<'de> for PredictionPagination
impl<'de> Deserialize<'de> for PredictionPagination
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 PredictionPagination
impl RefUnwindSafe for PredictionPagination
impl Send for PredictionPagination
impl Sync for PredictionPagination
impl Unpin for PredictionPagination
impl UnsafeUnpin for PredictionPagination
impl UnwindSafe for PredictionPagination
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