pub struct CursorData {
pub s: String,
pub v: Value,
pub id: String,
}Expand description
Cursor data structure (encoded as base64 JSON in API)
Fields§
§s: StringSort field: “created”, “modified”, “recent”, “name”
v: ValueSort value (timestamp as i64 or string for name)
id: StringLast item’s external ID (file_id or action_id)
Implementations§
Trait Implementations§
Source§impl Clone for CursorData
impl Clone for CursorData
Source§fn clone(&self) -> CursorData
fn clone(&self) -> CursorData
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 CursorData
impl Debug for CursorData
Source§impl<'de> Deserialize<'de> for CursorData
impl<'de> Deserialize<'de> for CursorData
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 CursorData
impl RefUnwindSafe for CursorData
impl Send for CursorData
impl Sync for CursorData
impl Unpin for CursorData
impl UnsafeUnpin for CursorData
impl UnwindSafe for CursorData
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