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