Struct SopCapabilityRegistry
pub struct SopCapabilityRegistry { /* private fields */ }Implementations§
Source§impl SopCapabilityRegistry
impl SopCapabilityRegistry
pub fn with_builtins() -> Self
pub fn register<C>(&mut self, capability: C)where
C: SopCapability + 'static,
pub fn contains(&self, id: &str) -> bool
pub fn ids(&self) -> Vec<&str>
pub fn validate_sop(&self, sop: &Sop) -> Result<()>
pub fn execute_step( &self, ctx: CapabilityContext, step: &SopStep, piped_input: Value, ) -> Result<CapabilityResult>
Trait Implementations§
Source§impl Clone for SopCapabilityRegistry
impl Clone for SopCapabilityRegistry
Source§fn clone(&self) -> SopCapabilityRegistry
fn clone(&self) -> SopCapabilityRegistry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · §fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SopCapabilityRegistry
impl Debug for SopCapabilityRegistry
Source§impl Default for SopCapabilityRegistry
impl Default for SopCapabilityRegistry
Source§fn default() -> SopCapabilityRegistry
fn default() -> SopCapabilityRegistry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SopCapabilityRegistry
impl !RefUnwindSafe for SopCapabilityRegistry
impl Send for SopCapabilityRegistry
impl Sync for SopCapabilityRegistry
impl Unpin for SopCapabilityRegistry
impl UnsafeUnpin for SopCapabilityRegistry
impl !UnwindSafe for SopCapabilityRegistry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more