pub struct ActorAttestation {
pub identity_ref: String,
pub attestation_ref: String,
pub operator_approval_ref: String,
pub operator_approval_hash: String,
}Expand description
Actor attestation block.
Fields§
§identity_ref: StringStable actor identity reference.
attestation_ref: StringStable attestation reference.
operator_approval_ref: StringOperator approval reference.
operator_approval_hash: Stringsha256:<hex> operator approval hash.
Trait Implementations§
Source§impl Clone for ActorAttestation
impl Clone for ActorAttestation
Source§fn clone(&self) -> ActorAttestation
fn clone(&self) -> ActorAttestation
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 ActorAttestation
impl Debug for ActorAttestation
Source§impl<'de> Deserialize<'de> for ActorAttestation
impl<'de> Deserialize<'de> for ActorAttestation
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
Source§impl PartialEq for ActorAttestation
impl PartialEq for ActorAttestation
Source§fn eq(&self, other: &ActorAttestation) -> bool
fn eq(&self, other: &ActorAttestation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActorAttestation
impl Serialize for ActorAttestation
impl Eq for ActorAttestation
impl StructuralPartialEq for ActorAttestation
Auto Trait Implementations§
impl Freeze for ActorAttestation
impl RefUnwindSafe for ActorAttestation
impl Send for ActorAttestation
impl Sync for ActorAttestation
impl Unpin for ActorAttestation
impl UnsafeUnpin for ActorAttestation
impl UnwindSafe for ActorAttestation
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