pub struct SessionInputNeededRemovedAction {
pub id: String,
}Expand description
A session-level input request was removed.
Removes the entry identified by id from
{@link SessionState.inputNeeded}; a no-op when no entry matches.
Server-originated: the host dispatches this once the underlying request resolves (the user answers, the tool call is confirmed, or the client reports its result).
Fields§
§id: StringThe id of the input request to remove.
Trait Implementations§
Source§impl Clone for SessionInputNeededRemovedAction
impl Clone for SessionInputNeededRemovedAction
Source§fn clone(&self) -> SessionInputNeededRemovedAction
fn clone(&self) -> SessionInputNeededRemovedAction
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<'de> Deserialize<'de> for SessionInputNeededRemovedAction
impl<'de> Deserialize<'de> for SessionInputNeededRemovedAction
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
Source§impl PartialEq for SessionInputNeededRemovedAction
impl PartialEq for SessionInputNeededRemovedAction
Source§fn eq(&self, other: &SessionInputNeededRemovedAction) -> bool
fn eq(&self, other: &SessionInputNeededRemovedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionInputNeededRemovedAction
Auto Trait Implementations§
impl Freeze for SessionInputNeededRemovedAction
impl RefUnwindSafe for SessionInputNeededRemovedAction
impl Send for SessionInputNeededRemovedAction
impl Sync for SessionInputNeededRemovedAction
impl Unpin for SessionInputNeededRemovedAction
impl UnsafeUnpin for SessionInputNeededRemovedAction
impl UnwindSafe for SessionInputNeededRemovedAction
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