Struct CapabilityInfo
pub struct CapabilityInfo {
pub id: &'static str,
pub description: &'static str,
pub deterministic: bool,
pub idempotent: bool,
pub reversible: bool,
pub supports_retry: bool,
pub required_permissions: Vec<&'static str>,
pub input_schema: Option<Value>,
pub output_schema: Option<Value>,
}Fields§
§id: &'static str§description: &'static str§deterministic: bool§idempotent: bool§reversible: bool§supports_retry: bool§required_permissions: Vec<&'static str>§input_schema: Option<Value>§output_schema: Option<Value>Trait Implementations§
Source§impl Clone for CapabilityInfo
impl Clone for CapabilityInfo
Source§fn clone(&self) -> CapabilityInfo
fn clone(&self) -> CapabilityInfo
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 moreAuto Trait Implementations§
impl Freeze for CapabilityInfo
impl RefUnwindSafe for CapabilityInfo
impl Send for CapabilityInfo
impl Sync for CapabilityInfo
impl Unpin for CapabilityInfo
impl UnsafeUnpin for CapabilityInfo
impl UnwindSafe for CapabilityInfo
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