pub struct ListDmRoutingConfigPathsParams {
pub config_id: String,
pub path: Option<String>,
pub _match: Option<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_paths
Fields§
§config_id: String§path: Option<String>Filter results by path pattern. The match strategy is controlled by the match parameter.
_match: Option<String>How to match the value of the path filter against existing path patterns. Has no effect unless path is also provided.
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 ListDmRoutingConfigPathsParams
impl Clone for ListDmRoutingConfigPathsParams
Source§fn clone(&self) -> ListDmRoutingConfigPathsParams
fn clone(&self) -> ListDmRoutingConfigPathsParams
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 ListDmRoutingConfigPathsParams
impl Default for ListDmRoutingConfigPathsParams
Source§fn default() -> ListDmRoutingConfigPathsParams
fn default() -> ListDmRoutingConfigPathsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListDmRoutingConfigPathsParams
impl RefUnwindSafe for ListDmRoutingConfigPathsParams
impl Send for ListDmRoutingConfigPathsParams
impl Sync for ListDmRoutingConfigPathsParams
impl Unpin for ListDmRoutingConfigPathsParams
impl UnsafeUnpin for ListDmRoutingConfigPathsParams
impl UnwindSafe for ListDmRoutingConfigPathsParams
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