pub struct CancelArguments {
pub request_id: Option<i64>,
pub progress_id: Option<String>,
}Expand description
Arguments for cancel request
Fields§
§request_id: Option<i64>ID of the request to cancel
progress_id: Option<String>ID of the progress to cancel
Trait Implementations§
Source§impl Clone for CancelArguments
impl Clone for CancelArguments
Source§fn clone(&self) -> CancelArguments
fn clone(&self) -> CancelArguments
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 CancelArguments
impl Debug for CancelArguments
Source§impl<'de> Deserialize<'de> for CancelArguments
impl<'de> Deserialize<'de> for CancelArguments
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CancelArguments
impl RefUnwindSafe for CancelArguments
impl Send for CancelArguments
impl Sync for CancelArguments
impl Unpin for CancelArguments
impl UnsafeUnpin for CancelArguments
impl UnwindSafe for CancelArguments
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