pub struct ListDmDomainsParams {
pub fqdn: Option<String>,
pub service_id: Option<String>,
pub sort: Option<String>,
pub activated: Option<bool>,
pub verified: Option<bool>,
pub cursor: Option<String>,
pub limit: Option<i32>,
}Expand description
struct for passing parameters to the method list_dm_domains
Fields§
§fqdn: Option<String>§service_id: Option<String>Filter results based on a service_id.
sort: Option<String>The order in which to list the results.
activated: Option<bool>§verified: Option<bool>§cursor: Option<String>Cursor value from the next_cursor field of a previous response, used to retrieve the next page. To request the first page, this should be empty.
limit: Option<i32>Limit how many results are returned.
Trait Implementations§
Source§impl Clone for ListDmDomainsParams
impl Clone for ListDmDomainsParams
Source§fn clone(&self) -> ListDmDomainsParams
fn clone(&self) -> ListDmDomainsParams
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 ListDmDomainsParams
impl Debug for ListDmDomainsParams
Source§impl Default for ListDmDomainsParams
impl Default for ListDmDomainsParams
Source§fn default() -> ListDmDomainsParams
fn default() -> ListDmDomainsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListDmDomainsParams
impl RefUnwindSafe for ListDmDomainsParams
impl Send for ListDmDomainsParams
impl Sync for ListDmDomainsParams
impl Unpin for ListDmDomainsParams
impl UnwindSafe for ListDmDomainsParams
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