pub struct ListZonesParams {
pub name: Option<String>,
pub status: Option<Status>,
pub page: Option<u32>,
pub per_page: Option<u32>,
pub order: Option<ListZonesOrder>,
pub direction: Option<OrderDirection>,
pub search_match: Option<SearchMatch>,
}Fields§
§name: Option<String>§status: Option<Status>§page: Option<u32>§per_page: Option<u32>§order: Option<ListZonesOrder>§direction: Option<OrderDirection>§search_match: Option<SearchMatch>Trait Implementations§
Source§impl Clone for ListZonesParams
impl Clone for ListZonesParams
Source§fn clone(&self) -> ListZonesParams
fn clone(&self) -> ListZonesParams
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 ListZonesParams
impl Debug for ListZonesParams
Source§impl Default for ListZonesParams
impl Default for ListZonesParams
Source§fn default() -> ListZonesParams
fn default() -> ListZonesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListZonesParams
impl RefUnwindSafe for ListZonesParams
impl Send for ListZonesParams
impl Sync for ListZonesParams
impl Unpin for ListZonesParams
impl UnwindSafe for ListZonesParams
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