pub struct AdminCustomerListQuery {
pub customer_id: Option<String>,
pub name: Option<String>,
pub plan: Option<String>,
pub limit: Option<i32>,
pub offset: Option<i32>,
}Fields§
§customer_id: Option<String>§name: Option<String>§plan: Option<String>§limit: Option<i32>§offset: Option<i32>Trait Implementations§
Source§impl Clone for AdminCustomerListQuery
impl Clone for AdminCustomerListQuery
Source§fn clone(&self) -> AdminCustomerListQuery
fn clone(&self) -> AdminCustomerListQuery
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 AdminCustomerListQuery
impl Debug for AdminCustomerListQuery
Source§impl Default for AdminCustomerListQuery
impl Default for AdminCustomerListQuery
Source§fn default() -> AdminCustomerListQuery
fn default() -> AdminCustomerListQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminCustomerListQuery
impl<'de> Deserialize<'de> for AdminCustomerListQuery
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 AdminCustomerListQuery
impl PartialEq for AdminCustomerListQuery
Source§impl Serialize for AdminCustomerListQuery
impl Serialize for AdminCustomerListQuery
impl Eq for AdminCustomerListQuery
impl StructuralPartialEq for AdminCustomerListQuery
Auto Trait Implementations§
impl Freeze for AdminCustomerListQuery
impl RefUnwindSafe for AdminCustomerListQuery
impl Send for AdminCustomerListQuery
impl Sync for AdminCustomerListQuery
impl Unpin for AdminCustomerListQuery
impl UnwindSafe for AdminCustomerListQuery
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