pub struct QueuePendingItems {
pub display_text: String,
pub kind: QueuePendingItemsKind,
}Expand description
Schema for the QueuePendingItems type.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§display_text: StringHuman-readable text to display for this queue entry in the UI
kind: QueuePendingItemsKindWhether this item is a queued user message or a queued slash command / model change
Trait Implementations§
Source§impl Clone for QueuePendingItems
impl Clone for QueuePendingItems
Source§fn clone(&self) -> QueuePendingItems
fn clone(&self) -> QueuePendingItems
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 QueuePendingItems
impl Debug for QueuePendingItems
Source§impl Default for QueuePendingItems
impl Default for QueuePendingItems
Source§fn default() -> QueuePendingItems
fn default() -> QueuePendingItems
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueuePendingItems
impl<'de> Deserialize<'de> for QueuePendingItems
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 QueuePendingItems
impl RefUnwindSafe for QueuePendingItems
impl Send for QueuePendingItems
impl Sync for QueuePendingItems
impl Unpin for QueuePendingItems
impl UnsafeUnpin for QueuePendingItems
impl UnwindSafe for QueuePendingItems
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