pub struct HistoryPage {
pub items: Vec<HistoryItem>,
pub direction: String,
pub limit: usize,
pub has_more: bool,
pub next_cursor: Option<String>,
pub bounds: HistoryBounds,
pub continuity: HistoryContinuity,
}Fields§
§items: Vec<HistoryItem>§direction: String§limit: usize§has_more: bool§next_cursor: Option<String>§bounds: HistoryBounds§continuity: HistoryContinuityTrait Implementations§
Source§impl Clone for HistoryPage
impl Clone for HistoryPage
Source§fn clone(&self) -> HistoryPage
fn clone(&self) -> HistoryPage
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 HistoryPage
impl Debug for HistoryPage
Source§impl<'de> Deserialize<'de> for HistoryPage
impl<'de> Deserialize<'de> for HistoryPage
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 !RefUnwindSafe for HistoryPage
impl !UnwindSafe for HistoryPage
impl Freeze for HistoryPage
impl Send for HistoryPage
impl Sync for HistoryPage
impl Unpin for HistoryPage
impl UnsafeUnpin for HistoryPage
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