pub struct PagingCursors {
    pub before: Option<Box<str>>,
    pub after: Option<Box<str>>,
}Fields§
§before: Option<Box<str>>§after: Option<Box<str>>Trait Implementations§
Source§impl Clone for PagingCursors
 
impl Clone for PagingCursors
Source§fn clone(&self) -> PagingCursors
 
fn clone(&self) -> PagingCursors
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 PagingCursors
 
impl Debug for PagingCursors
Source§impl<'de> Deserialize<'de> for PagingCursors
 
impl<'de> Deserialize<'de> for PagingCursors
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 PagingCursors
impl RefUnwindSafe for PagingCursors
impl Send for PagingCursors
impl Sync for PagingCursors
impl Unpin for PagingCursors
impl UnwindSafe for PagingCursors
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