pub struct OclaCapability {
pub kind: OclaCapabilityKind,
pub api_version: String,
pub status: OclaCapabilityStatus,
pub limits: BTreeMap<String, u64>,
}Fields§
§kind: OclaCapabilityKind[PUBLIC] Capability name.
api_version: String[PUBLIC] Supported API version string.
status: OclaCapabilityStatus[PUBLIC] Capability availability status.
limits: BTreeMap<String, u64>[INTERNAL] Named operating limits, e.g. max_input_tokens or max_fanout.
Implementations§
Source§impl OclaCapability
impl OclaCapability
pub fn available(kind: OclaCapabilityKind) -> Self
Trait Implementations§
Source§impl Clone for OclaCapability
impl Clone for OclaCapability
Source§fn clone(&self) -> OclaCapability
fn clone(&self) -> OclaCapability
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 OclaCapability
impl Debug for OclaCapability
Source§impl<'de> Deserialize<'de> for OclaCapability
impl<'de> Deserialize<'de> for OclaCapability
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 OclaCapability
Source§impl PartialEq for OclaCapability
impl PartialEq for OclaCapability
Source§impl Serialize for OclaCapability
impl Serialize for OclaCapability
impl StructuralPartialEq for OclaCapability
Auto Trait Implementations§
impl Freeze for OclaCapability
impl RefUnwindSafe for OclaCapability
impl Send for OclaCapability
impl Sync for OclaCapability
impl Unpin for OclaCapability
impl UnsafeUnpin for OclaCapability
impl UnwindSafe for OclaCapability
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