#[non_exhaustive]pub struct AgentAuthCapabilities {
pub logout: Option<LogoutCapabilities>,
pub meta: Option<Meta>,
}Expand description
Authentication-related capabilities supported by the agent.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.logout: Option<LogoutCapabilities>Whether the agent supports the logout method.
By supplying {} it means that the agent supports the logout method.
meta: Option<Meta>The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.
See protocol docs: Extensibility
Implementations§
Source§impl AgentAuthCapabilities
impl AgentAuthCapabilities
Sourcepub fn new() -> Self
pub fn new() -> Self
Builds an empty AgentAuthCapabilities; use builder methods to advertise supported sub-capabilities.
Sourcepub fn logout(self, logout: impl IntoOption<LogoutCapabilities>) -> Self
pub fn logout(self, logout: impl IntoOption<LogoutCapabilities>) -> Self
Whether the agent supports the logout method.
Sourcepub fn meta(self, meta: impl IntoOption<Meta>) -> Self
pub fn meta(self, meta: impl IntoOption<Meta>) -> Self
The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.
See protocol docs: Extensibility
Trait Implementations§
Source§impl Clone for AgentAuthCapabilities
impl Clone for AgentAuthCapabilities
Source§fn clone(&self) -> AgentAuthCapabilities
fn clone(&self) -> AgentAuthCapabilities
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AgentAuthCapabilities
impl Debug for AgentAuthCapabilities
Source§impl Default for AgentAuthCapabilities
impl Default for AgentAuthCapabilities
Source§fn default() -> AgentAuthCapabilities
fn default() -> AgentAuthCapabilities
Source§impl<'de> Deserialize<'de> for AgentAuthCapabilities
impl<'de> Deserialize<'de> for AgentAuthCapabilities
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>,
impl Eq for AgentAuthCapabilities
Source§impl IntoV2 for AgentAuthCapabilities
Available on crate feature unstable_protocol_v2 only.
impl IntoV2 for AgentAuthCapabilities
unstable_protocol_v2 only.Source§impl JsonSchema for AgentAuthCapabilities
impl JsonSchema for AgentAuthCapabilities
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
$ref keyword. Read moreSource§impl PartialEq for AgentAuthCapabilities
impl PartialEq for AgentAuthCapabilities
Source§fn eq(&self, other: &AgentAuthCapabilities) -> bool
fn eq(&self, other: &AgentAuthCapabilities) -> bool
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentAuthCapabilities
impl Serialize for AgentAuthCapabilities
impl StructuralPartialEq for AgentAuthCapabilities
Auto Trait Implementations§
impl Freeze for AgentAuthCapabilities
impl RefUnwindSafe for AgentAuthCapabilities
impl Send for AgentAuthCapabilities
impl Sync for AgentAuthCapabilities
impl Unpin for AgentAuthCapabilities
impl UnsafeUnpin for AgentAuthCapabilities
impl UnwindSafe for AgentAuthCapabilities
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.