pub struct LogicalExecution {
pub invariants: Vec<Invariant>,
pub contract: BTreeMap<String, AuthorityValue>,
}Expand description
The execution member of the Logical Context of Authority.
Fields§
§invariants: Vec<Invariant>Executable PIC authority: what may be preserved or attenuated across continuity.
contract: BTreeMap<String, AuthorityValue>Execution constraints. Constrains execution; grants no authority.
Trait Implementations§
Source§impl Clone for LogicalExecution
impl Clone for LogicalExecution
Source§fn clone(&self) -> LogicalExecution
fn clone(&self) -> LogicalExecution
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 LogicalExecution
impl Debug for LogicalExecution
Source§impl Default for LogicalExecution
impl Default for LogicalExecution
Source§fn default() -> LogicalExecution
fn default() -> LogicalExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogicalExecution
impl<'de> Deserialize<'de> for LogicalExecution
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
impl Eq for LogicalExecution
Source§impl PartialEq for LogicalExecution
impl PartialEq for LogicalExecution
Source§impl Serialize for LogicalExecution
impl Serialize for LogicalExecution
impl StructuralPartialEq for LogicalExecution
Auto Trait Implementations§
impl Freeze for LogicalExecution
impl RefUnwindSafe for LogicalExecution
impl Send for LogicalExecution
impl Sync for LogicalExecution
impl Unpin for LogicalExecution
impl UnsafeUnpin for LogicalExecution
impl UnwindSafe for LogicalExecution
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