pub struct OperateRetentionExecutionParams {
pub id: i64,
pub eid: i64,
pub body: OperateRetentionExecutionRequest,
pub x_request_id: Option<String>,
}Expand description
struct for passing parameters to the method operate_retention_execution
Fields§
§id: i64Retention ID.
eid: i64Retention execution ID.
body: OperateRetentionExecutionRequestThe action, only support "stop" now.
x_request_id: Option<String>An unique ID for the request
Trait Implementations§
Source§impl Clone for OperateRetentionExecutionParams
impl Clone for OperateRetentionExecutionParams
Source§fn clone(&self) -> OperateRetentionExecutionParams
fn clone(&self) -> OperateRetentionExecutionParams
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 OperateRetentionExecutionParams
impl RefUnwindSafe for OperateRetentionExecutionParams
impl Send for OperateRetentionExecutionParams
impl Sync for OperateRetentionExecutionParams
impl Unpin for OperateRetentionExecutionParams
impl UnwindSafe for OperateRetentionExecutionParams
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