pub struct ListCardsResponse {
pub errors: Option<Vec<Error>>,
pub cards: Option<Vec<Card>>,
pub cursor: Option<String>,
}
Expand description
This is a model struct for ListCardsResponse type
Fields§
§errors: Option<Vec<Error>>
Information on errors encountered during the request.
cards: Option<Vec<Card>>
The requested list of Card
s.
cursor: Option<String>
The pagination cursor to be used in a subsequent request. If empty, this is the final response. See Pagination for more information.
Trait Implementations§
Source§impl Clone for ListCardsResponse
impl Clone for ListCardsResponse
Source§fn clone(&self) -> ListCardsResponse
fn clone(&self) -> ListCardsResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListCardsResponse
impl Debug for ListCardsResponse
Source§impl Default for ListCardsResponse
impl Default for ListCardsResponse
Source§fn default() -> ListCardsResponse
fn default() -> ListCardsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListCardsResponse
impl<'de> Deserialize<'de> for ListCardsResponse
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
Source§impl PartialEq for ListCardsResponse
impl PartialEq for ListCardsResponse
impl Eq for ListCardsResponse
impl StructuralPartialEq for ListCardsResponse
Auto Trait Implementations§
impl Freeze for ListCardsResponse
impl RefUnwindSafe for ListCardsResponse
impl Send for ListCardsResponse
impl Sync for ListCardsResponse
impl Unpin for ListCardsResponse
impl UnwindSafe for ListCardsResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.