pub struct ListDmRoutingConfigVersionsParams {
pub config_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_versions
Fields§
§config_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 ListDmRoutingConfigVersionsParams
impl Clone for ListDmRoutingConfigVersionsParams
Source§fn clone(&self) -> ListDmRoutingConfigVersionsParams
fn clone(&self) -> ListDmRoutingConfigVersionsParams
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 ListDmRoutingConfigVersionsParams
impl Default for ListDmRoutingConfigVersionsParams
Source§fn default() -> ListDmRoutingConfigVersionsParams
fn default() -> ListDmRoutingConfigVersionsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListDmRoutingConfigVersionsParams
impl RefUnwindSafe for ListDmRoutingConfigVersionsParams
impl Send for ListDmRoutingConfigVersionsParams
impl Sync for ListDmRoutingConfigVersionsParams
impl Unpin for ListDmRoutingConfigVersionsParams
impl UnsafeUnpin for ListDmRoutingConfigVersionsParams
impl UnwindSafe for ListDmRoutingConfigVersionsParams
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