pub struct Zone {
pub search: Search,
pub name: Option<String>,
pub account_name: Option<String>,
pub order: Option<Order>,
pub page: Option<i32>,
pub per_page: Option<u32>,
pub status: Option<Status>,
pub account_id: Option<String>,
pub direction: Option<Direction>,
}Expand description
This struct can be used to setup search parameters for list API
Fields§
§search: Search§name: Option<String>§account_name: Option<String>§order: Option<Order>§page: Option<i32>§per_page: Option<u32>§status: Option<Status>§account_id: Option<String>§direction: Option<Direction>Implementations§
Auto Trait Implementations§
impl Freeze for Zone
impl RefUnwindSafe for Zone
impl Send for Zone
impl Sync for Zone
impl Unpin for Zone
impl UnwindSafe for Zone
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