pub struct ResolvedContract {
pub capability: String,
pub entry_schema_name: String,
pub entry_schema: Value,
}Expand description
A resolved pin: verified capability plus loaded entry schema.
Fields§
§capability: StringVerified capability token.
entry_schema_name: StringRelative entry schema name from the manifest.
entry_schema: ValueParsed entry schema document.
Trait Implementations§
Source§impl Clone for ResolvedContract
impl Clone for ResolvedContract
Source§fn clone(&self) -> ResolvedContract
fn clone(&self) -> ResolvedContract
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 moreAuto Trait Implementations§
impl Freeze for ResolvedContract
impl RefUnwindSafe for ResolvedContract
impl Send for ResolvedContract
impl Sync for ResolvedContract
impl Unpin for ResolvedContract
impl UnsafeUnpin for ResolvedContract
impl UnwindSafe for ResolvedContract
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