pub struct CapabilityManifest {
pub manifest_version: u32,
pub capability_id: String,
pub problem_signature: String,
pub tool_kind: String,
pub input_contract: String,
pub output_contract: String,
pub permissions: Permissions,
pub limits: ResourceLimits,
pub verification_required: Vec<VerificationKind>,
pub destroy_after_run: bool,
}Expand description
Full manifest created by the tool architect (Phase 2+). In Phase 1 this is a data type only — no generation logic exists yet.
Fields§
§manifest_version: u32§capability_id: String§problem_signature: String§tool_kind: String§input_contract: String§output_contract: String§permissions: Permissions§limits: ResourceLimits§verification_required: Vec<VerificationKind>§destroy_after_run: boolTrait Implementations§
Source§impl Clone for CapabilityManifest
impl Clone for CapabilityManifest
Source§fn clone(&self) -> CapabilityManifest
fn clone(&self) -> CapabilityManifest
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 CapabilityManifest
impl Debug for CapabilityManifest
Source§impl<'de> Deserialize<'de> for CapabilityManifest
impl<'de> Deserialize<'de> for CapabilityManifest
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
Auto Trait Implementations§
impl Freeze for CapabilityManifest
impl RefUnwindSafe for CapabilityManifest
impl Send for CapabilityManifest
impl Sync for CapabilityManifest
impl Unpin for CapabilityManifest
impl UnsafeUnpin for CapabilityManifest
impl UnwindSafe for CapabilityManifest
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