pub struct ValidationReceiptInfo {
pub validation_status: ValidationStatus,
pub validators: Vec<HoloHash<Agent>>,
}
Expand description
Summary information for a validation receipt.
Currently, this is ignoring dht_op_hash
because it’s already on the parent type and
when_integrated
because that’s not relevant to the validation receipt itself.
Fields§
§validation_status: ValidationStatus
the result of the validation.
validators: Vec<HoloHash<Agent>>
the remote validators who signed the receipt.
Trait Implementations§
Source§impl Clone for ValidationReceiptInfo
impl Clone for ValidationReceiptInfo
Source§fn clone(&self) -> ValidationReceiptInfo
fn clone(&self) -> ValidationReceiptInfo
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 ValidationReceiptInfo
impl Debug for ValidationReceiptInfo
Source§impl<'de> Deserialize<'de> for ValidationReceiptInfo
impl<'de> Deserialize<'de> for ValidationReceiptInfo
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ValidationReceiptInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ValidationReceiptInfo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ValidationReceiptInfo
impl Serialize for ValidationReceiptInfo
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
Auto Trait Implementations§
impl Freeze for ValidationReceiptInfo
impl RefUnwindSafe for ValidationReceiptInfo
impl Send for ValidationReceiptInfo
impl Sync for ValidationReceiptInfo
impl Unpin for ValidationReceiptInfo
impl UnwindSafe for ValidationReceiptInfo
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