pub struct CancelArguments {
    pub request_id: Option<u64>,
    pub progress_id: Option<String>,
}Expand description
Arguments for cancel request.
Fields§
§request_id: Option<u64>The ID (attribute seq) of the request to cancel. If missing no request is cancelled.
Both a requestId and a progressId can be specified in one request.
progress_id: Option<String>The ID (attribute progressId) of the progress to cancel. If missing no progress is cancelled.
Both a requestId and a progressId can be specified in one request.
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 · 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 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