pub struct ReplyCursor {
pub is_end: bool,
pub id: Option<u64>,
pub time: Option<u64>,
}
Expand description
分页游标
Fields§
§is_end: bool
§id: Option<u64>
§time: Option<u64>
Trait Implementations§
Source§impl Clone for ReplyCursor
impl Clone for ReplyCursor
Source§fn clone(&self) -> ReplyCursor
fn clone(&self) -> ReplyCursor
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 ReplyCursor
impl Debug for ReplyCursor
Source§impl<'de> Deserialize<'de> for ReplyCursor
impl<'de> Deserialize<'de> for ReplyCursor
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 ReplyCursor
impl RefUnwindSafe for ReplyCursor
impl Send for ReplyCursor
impl Sync for ReplyCursor
impl Unpin for ReplyCursor
impl UnwindSafe for ReplyCursor
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