pub struct GetListResponse {
pub data: GetListData,
pub cursor: String,
}Expand description
Response from get_list.
Fields§
§data: GetListDataItems for the list on the current page.
cursor: StringCursor for the next page; empty string when there are no more pages.
Trait Implementations§
Source§impl Clone for GetListResponse
impl Clone for GetListResponse
Source§fn clone(&self) -> GetListResponse
fn clone(&self) -> GetListResponse
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 Debug for GetListResponse
impl Debug for GetListResponse
Source§impl<'de> Deserialize<'de> for GetListResponse
impl<'de> Deserialize<'de> for GetListResponse
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 GetListResponse
impl RefUnwindSafe for GetListResponse
impl Send for GetListResponse
impl Sync for GetListResponse
impl Unpin for GetListResponse
impl UnsafeUnpin for GetListResponse
impl UnwindSafe for GetListResponse
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