pub struct CardListParams {
pub f: Option<String>,
pub model_type: Option<String>,
pub limit: Option<u32>,
pub offset: Option<u32>,
pub archived: Option<bool>,
}
Expand description
Parameters for listing cards
Fields§
§f: Option<String>
Filter parameter (e.g., “archived”, “all”)
model_type: Option<String>
Model type filter
limit: Option<u32>
Limit the number of results
offset: Option<u32>
Offset for pagination
archived: Option<bool>
Include archived cards
Trait Implementations§
Source§impl Clone for CardListParams
impl Clone for CardListParams
Source§fn clone(&self) -> CardListParams
fn clone(&self) -> CardListParams
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 CardListParams
impl Debug for CardListParams
Source§impl Default for CardListParams
impl Default for CardListParams
Source§fn default() -> CardListParams
fn default() -> CardListParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CardListParams
impl<'de> Deserialize<'de> for CardListParams
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 CardListParams
impl RefUnwindSafe for CardListParams
impl Send for CardListParams
impl Sync for CardListParams
impl Unpin for CardListParams
impl UnwindSafe for CardListParams
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