pub struct CommandCompletedData {
pub request_id: RequestId,
}Expand description
Queued command completion notification signaling UI dismissal
Fields§
§request_id: RequestIdRequest ID of the resolved command request; clients should dismiss any UI for this request
Trait Implementations§
Source§impl Clone for CommandCompletedData
impl Clone for CommandCompletedData
Source§fn clone(&self) -> CommandCompletedData
fn clone(&self) -> CommandCompletedData
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 CommandCompletedData
impl Debug for CommandCompletedData
Source§impl<'de> Deserialize<'de> for CommandCompletedData
impl<'de> Deserialize<'de> for CommandCompletedData
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 CommandCompletedData
impl RefUnwindSafe for CommandCompletedData
impl Send for CommandCompletedData
impl Sync for CommandCompletedData
impl Unpin for CommandCompletedData
impl UnsafeUnpin for CommandCompletedData
impl UnwindSafe for CommandCompletedData
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