pub struct ListDmRoutingConfigRulesParams {
pub config_id: String,
pub path_id: String,
pub sort: Option<String>,
pub cursor: Option<String>,
pub limit: Option<i32>,
}Expand description
struct for passing parameters to the method list_dm_routing_config_rules
Fields§
§config_id: String§path_id: String§sort: Option<String>The order in which to list the results.
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 ListDmRoutingConfigRulesParams
impl Clone for ListDmRoutingConfigRulesParams
Source§fn clone(&self) -> ListDmRoutingConfigRulesParams
fn clone(&self) -> ListDmRoutingConfigRulesParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ListDmRoutingConfigRulesParams
impl Default for ListDmRoutingConfigRulesParams
Source§fn default() -> ListDmRoutingConfigRulesParams
fn default() -> ListDmRoutingConfigRulesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListDmRoutingConfigRulesParams
impl RefUnwindSafe for ListDmRoutingConfigRulesParams
impl Send for ListDmRoutingConfigRulesParams
impl Sync for ListDmRoutingConfigRulesParams
impl Unpin for ListDmRoutingConfigRulesParams
impl UnsafeUnpin for ListDmRoutingConfigRulesParams
impl UnwindSafe for ListDmRoutingConfigRulesParams
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