pub struct CommandsHandlePendingCommandRequest {
pub error: Option<String>,
pub request_id: RequestId,
}Expand description
Pending command request ID and an optional error if the client handler failed.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§error: Option<String>Error message if the command handler failed
request_id: RequestIdRequest ID from the command invocation event
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CommandsHandlePendingCommandRequest
impl<'de> Deserialize<'de> for CommandsHandlePendingCommandRequest
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 CommandsHandlePendingCommandRequest
impl RefUnwindSafe for CommandsHandlePendingCommandRequest
impl Send for CommandsHandlePendingCommandRequest
impl Sync for CommandsHandlePendingCommandRequest
impl Unpin for CommandsHandlePendingCommandRequest
impl UnsafeUnpin for CommandsHandlePendingCommandRequest
impl UnwindSafe for CommandsHandlePendingCommandRequest
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