#[non_exhaustive]pub enum ElicitationScope {
Session(ElicitationSessionScope),
Request(ElicitationRequestScope),
}Available on crate features
unstable_elicitation and unstable_protocol_v2 only.Expand description
UNSTABLE
This capability is not part of the spec yet, and may be removed or changed at any point.
The scope of an elicitation request, determining what context it’s tied to.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Session(ElicitationSessionScope)
Tied to a session, optionally to a specific tool call within that session.
Request(ElicitationRequestScope)
Tied to a specific JSON-RPC request outside of a session (e.g., during auth/configuration phases before any session is started).
Trait Implementations§
Source§impl Clone for ElicitationScope
impl Clone for ElicitationScope
Source§fn clone(&self) -> ElicitationScope
fn clone(&self) -> ElicitationScope
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 ElicitationScope
impl Debug for ElicitationScope
Source§impl<'de> Deserialize<'de> for ElicitationScope
impl<'de> Deserialize<'de> for ElicitationScope
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
impl Eq for ElicitationScope
Source§impl From<ElicitationRequestScope> for ElicitationScope
impl From<ElicitationRequestScope> for ElicitationScope
Source§fn from(scope: ElicitationRequestScope) -> Self
fn from(scope: ElicitationRequestScope) -> Self
Converts to this type from the input type.
Source§impl From<ElicitationSessionScope> for ElicitationScope
impl From<ElicitationSessionScope> for ElicitationScope
Source§fn from(scope: ElicitationSessionScope) -> Self
fn from(scope: ElicitationSessionScope) -> Self
Converts to this type from the input type.
Source§impl IntoV1 for ElicitationScope
impl IntoV1 for ElicitationScope
Source§impl JsonSchema for ElicitationScope
impl JsonSchema for ElicitationScope
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ElicitationScope
impl PartialEq for ElicitationScope
Source§fn eq(&self, other: &ElicitationScope) -> bool
fn eq(&self, other: &ElicitationScope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ElicitationScope
impl Serialize for ElicitationScope
impl StructuralPartialEq for ElicitationScope
Auto Trait Implementations§
impl Freeze for ElicitationScope
impl RefUnwindSafe for ElicitationScope
impl Send for ElicitationScope
impl Sync for ElicitationScope
impl Unpin for ElicitationScope
impl UnsafeUnpin for ElicitationScope
impl UnwindSafe for ElicitationScope
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