pub struct ListPrimaryIpsParams {
pub name: Option<String>,
pub label_selector: Option<String>,
pub ip: Option<String>,
pub page: Option<i64>,
pub per_page: Option<i64>,
pub sort: Option<String>,
}
Expand description
struct for passing parameters to the method list_primary_ips
Fields§
§name: Option<String>
Filter resources by their name. The response will only contain the resources matching the specified name.
label_selector: Option<String>
Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".
ip: Option<String>
Filter results by IP address.
page: Option<i64>
Page number to return. For more information, see "Pagination".
per_page: Option<i64>
Maximum number of entries returned per page. For more information, see "Pagination".
sort: Option<String>
Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".
Trait Implementations§
Source§impl Clone for ListPrimaryIpsParams
impl Clone for ListPrimaryIpsParams
Source§fn clone(&self) -> ListPrimaryIpsParams
fn clone(&self) -> ListPrimaryIpsParams
Returns a copy 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 ListPrimaryIpsParams
impl Debug for ListPrimaryIpsParams
Source§impl Default for ListPrimaryIpsParams
impl Default for ListPrimaryIpsParams
Source§fn default() -> ListPrimaryIpsParams
fn default() -> ListPrimaryIpsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListPrimaryIpsParams
impl RefUnwindSafe for ListPrimaryIpsParams
impl Send for ListPrimaryIpsParams
impl Sync for ListPrimaryIpsParams
impl Unpin for ListPrimaryIpsParams
impl UnwindSafe for ListPrimaryIpsParams
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