pub struct TimelinePagination {
pub next_token: Option<String>,
pub previous_token: Option<String>,
}Expand description
Pagination information for timeline results
Fields§
§next_token: Option<String>§previous_token: Option<String>Trait Implementations§
Source§impl Clone for TimelinePagination
impl Clone for TimelinePagination
Source§fn clone(&self) -> TimelinePagination
fn clone(&self) -> TimelinePagination
Returns a duplicate of the value. Read more
1.0.0 · 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 TimelinePagination
impl Debug for TimelinePagination
Source§impl<'de> Deserialize<'de> for TimelinePagination
impl<'de> Deserialize<'de> for TimelinePagination
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 TimelinePagination
impl RefUnwindSafe for TimelinePagination
impl Send for TimelinePagination
impl Sync for TimelinePagination
impl Unpin for TimelinePagination
impl UnsafeUnpin for TimelinePagination
impl UnwindSafe for TimelinePagination
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