pub enum SkillCapability {
KeyValueRead {
namespaces: Vec<String>,
},
HttpOutbound {
allow_hosts: Vec<String>,
},
StructuredLog,
}Variants§
Trait Implementations§
Source§impl Clone for SkillCapability
impl Clone for SkillCapability
Source§fn clone(&self) -> SkillCapability
fn clone(&self) -> SkillCapability
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 SkillCapability
impl Debug for SkillCapability
Source§impl<'de> Deserialize<'de> for SkillCapability
impl<'de> Deserialize<'de> for SkillCapability
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 SkillCapability
impl PartialEq for SkillCapability
Source§fn eq(&self, other: &SkillCapability) -> bool
fn eq(&self, other: &SkillCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SkillCapability
impl Serialize for SkillCapability
impl Eq for SkillCapability
impl StructuralPartialEq for SkillCapability
Auto Trait Implementations§
impl Freeze for SkillCapability
impl RefUnwindSafe for SkillCapability
impl Send for SkillCapability
impl Sync for SkillCapability
impl Unpin for SkillCapability
impl UnsafeUnpin for SkillCapability
impl UnwindSafe for SkillCapability
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