pub struct ExecutorProvenance {
pub issuer: String,
pub signature: Vec<u8>,
pub key: KeyMaterial,
}Expand description
Executor provenance - identifies who signed the PoC.
Fields§
§issuer: String§signature: Vec<u8>§key: KeyMaterialTrait Implementations§
Source§impl Clone for ExecutorProvenance
impl Clone for ExecutorProvenance
Source§fn clone(&self) -> ExecutorProvenance
fn clone(&self) -> ExecutorProvenance
Returns a duplicate of the value. Read more
1.0.0 · 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 ExecutorProvenance
impl Debug for ExecutorProvenance
Source§impl<'de> Deserialize<'de> for ExecutorProvenance
impl<'de> Deserialize<'de> for ExecutorProvenance
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutorProvenance, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutorProvenance, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExecutorProvenance
impl PartialEq for ExecutorProvenance
Source§impl Serialize for ExecutorProvenance
impl Serialize for ExecutorProvenance
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ExecutorProvenance
Auto Trait Implementations§
impl Freeze for ExecutorProvenance
impl RefUnwindSafe for ExecutorProvenance
impl Send for ExecutorProvenance
impl Sync for ExecutorProvenance
impl Unpin for ExecutorProvenance
impl UnwindSafe for ExecutorProvenance
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