pub struct ListReplicationTasksParams {
pub id: i64,
pub x_request_id: Option<String>,
pub sort: Option<String>,
pub page: Option<i64>,
pub page_size: Option<i64>,
pub status: Option<String>,
pub resource_type: Option<String>,
}Expand description
struct for passing parameters to the method list_replication_tasks
Fields§
§id: i64The ID of the execution that the tasks belongs to.
x_request_id: Option<String>An unique ID for the request
sort: Option<String>Sort the resource list in ascending or descending order. e.g. sort by field1 in ascending order and field2 in descending order with "sort=field1,-field2"
page: Option<i64>The page number
page_size: Option<i64>The size of per page
status: Option<String>The task status.
resource_type: Option<String>The resource type.
Trait Implementations§
Source§impl Clone for ListReplicationTasksParams
impl Clone for ListReplicationTasksParams
Source§fn clone(&self) -> ListReplicationTasksParams
fn clone(&self) -> ListReplicationTasksParams
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 moreAuto Trait Implementations§
impl Freeze for ListReplicationTasksParams
impl RefUnwindSafe for ListReplicationTasksParams
impl Send for ListReplicationTasksParams
impl Sync for ListReplicationTasksParams
impl Unpin for ListReplicationTasksParams
impl UnwindSafe for ListReplicationTasksParams
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