pub struct LivePlatformCapability {
pub id: String,
pub risk: CapabilityRisk,
pub required_scope: String,
pub transports: Vec<PlatformTransport>,
pub mcp_exposure: McpExposure,
}Expand description
One operation currently callable through the live v2 gateway.
Fields§
§id: String§risk: CapabilityRisk§required_scope: String§transports: Vec<PlatformTransport>§mcp_exposure: McpExposureTrait Implementations§
Source§impl Clone for LivePlatformCapability
impl Clone for LivePlatformCapability
Source§fn clone(&self) -> LivePlatformCapability
fn clone(&self) -> LivePlatformCapability
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 LivePlatformCapability
impl Debug for LivePlatformCapability
Source§impl<'de> Deserialize<'de> for LivePlatformCapability
impl<'de> Deserialize<'de> for LivePlatformCapability
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LivePlatformCapability, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LivePlatformCapability, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LivePlatformCapability
Source§impl PartialEq for LivePlatformCapability
impl PartialEq for LivePlatformCapability
Source§impl Serialize for LivePlatformCapability
impl Serialize for LivePlatformCapability
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for LivePlatformCapability
Auto Trait Implementations§
impl Freeze for LivePlatformCapability
impl RefUnwindSafe for LivePlatformCapability
impl Send for LivePlatformCapability
impl Sync for LivePlatformCapability
impl Unpin for LivePlatformCapability
impl UnsafeUnpin for LivePlatformCapability
impl UnwindSafe for LivePlatformCapability
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