pub struct ListDmRoutingConfigsParams {
pub state: Option<Vec<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_configs
Fields§
§state: Option<Vec<String>>Filter configs by lifecycle state. Accepts a comma-separated list of state values (e.g. ?state=active,active-with-draft). Returns only configs whose current state matches one of the provided values. Returns 400 if any value is not a recognised state.
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 ListDmRoutingConfigsParams
impl Clone for ListDmRoutingConfigsParams
Source§fn clone(&self) -> ListDmRoutingConfigsParams
fn clone(&self) -> ListDmRoutingConfigsParams
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 Debug for ListDmRoutingConfigsParams
impl Debug for ListDmRoutingConfigsParams
Source§impl Default for ListDmRoutingConfigsParams
impl Default for ListDmRoutingConfigsParams
Source§fn default() -> ListDmRoutingConfigsParams
fn default() -> ListDmRoutingConfigsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListDmRoutingConfigsParams
impl RefUnwindSafe for ListDmRoutingConfigsParams
impl Send for ListDmRoutingConfigsParams
impl Sync for ListDmRoutingConfigsParams
impl Unpin for ListDmRoutingConfigsParams
impl UnsafeUnpin for ListDmRoutingConfigsParams
impl UnwindSafe for ListDmRoutingConfigsParams
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