pub struct SearchCardsRequest {
pub query: Option<String>,
pub page: Option<u16>,
pub page_size: Option<u8>,
pub order_by: Option<String>,
}
Fields§
§query: Option<String>
The search query.
page: Option<u16>
The page of data to access.
page_size: Option<u8>
The maximum amount of cards to return. Max of 250.
order_by: Option<String>
The field(s) to order the results by.
Implementations§
Auto Trait Implementations§
impl Freeze for SearchCardsRequest
impl RefUnwindSafe for SearchCardsRequest
impl Send for SearchCardsRequest
impl Sync for SearchCardsRequest
impl Unpin for SearchCardsRequest
impl UnwindSafe for SearchCardsRequest
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