pub struct ListAssets200ResponseNextCursor {
pub created_at: Option<String>,
pub id: Option<i64>,
}Expand description
ListAssets200ResponseNextCursor : Cursor for the next page (null if no more pages)
Fields§
§created_at: Option<String>Timestamp to use for next page
id: Option<i64>ID to use for next page
Implementations§
Source§impl ListAssets200ResponseNextCursor
impl ListAssets200ResponseNextCursor
Sourcepub fn new() -> ListAssets200ResponseNextCursor
pub fn new() -> ListAssets200ResponseNextCursor
Cursor for the next page (null if no more pages)
Trait Implementations§
Source§impl Clone for ListAssets200ResponseNextCursor
impl Clone for ListAssets200ResponseNextCursor
Source§fn clone(&self) -> ListAssets200ResponseNextCursor
fn clone(&self) -> ListAssets200ResponseNextCursor
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 Default for ListAssets200ResponseNextCursor
impl Default for ListAssets200ResponseNextCursor
Source§fn default() -> ListAssets200ResponseNextCursor
fn default() -> ListAssets200ResponseNextCursor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAssets200ResponseNextCursor
impl<'de> Deserialize<'de> for ListAssets200ResponseNextCursor
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListAssets200ResponseNextCursor, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListAssets200ResponseNextCursor, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ListAssets200ResponseNextCursor
impl Serialize for ListAssets200ResponseNextCursor
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ListAssets200ResponseNextCursor
Auto Trait Implementations§
impl Freeze for ListAssets200ResponseNextCursor
impl RefUnwindSafe for ListAssets200ResponseNextCursor
impl Send for ListAssets200ResponseNextCursor
impl Sync for ListAssets200ResponseNextCursor
impl Unpin for ListAssets200ResponseNextCursor
impl UnsafeUnpin for ListAssets200ResponseNextCursor
impl UnwindSafe for ListAssets200ResponseNextCursor
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