pub struct UnsupportedEnqueueCommandResult {
pub queued: bool,
pub queue_id: Option<Value>,
}Expand description
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§queued: boolFalse because the target session does not support local command queueing (e.g. remote sessions).
queue_id: Option<Value>Legacy null queue ID accepted for compatibility with older runtimes.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UnsupportedEnqueueCommandResult
impl<'de> Deserialize<'de> for UnsupportedEnqueueCommandResult
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 UnsupportedEnqueueCommandResult
impl RefUnwindSafe for UnsupportedEnqueueCommandResult
impl Send for UnsupportedEnqueueCommandResult
impl Sync for UnsupportedEnqueueCommandResult
impl Unpin for UnsupportedEnqueueCommandResult
impl UnsafeUnpin for UnsupportedEnqueueCommandResult
impl UnwindSafe for UnsupportedEnqueueCommandResult
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