pub struct LocalHistoryReceipt {
pub id: String,
pub receipt_ref: String,
pub name: String,
pub status: String,
pub created_at: String,
pub harness_id: String,
pub harness_state: String,
pub summary: String,
pub source_type: Option<String>,
pub actors: Vec<String>,
pub artifact_types: Vec<String>,
pub verification: ReceiptVerificationProjection,
}Fields§
§id: String§receipt_ref: String§name: String§status: String§created_at: String§harness_id: String§harness_state: String§summary: String§source_type: Option<String>§actors: Vec<String>§artifact_types: Vec<String>§verification: ReceiptVerificationProjectionTrait Implementations§
Source§impl Clone for LocalHistoryReceipt
impl Clone for LocalHistoryReceipt
Source§fn clone(&self) -> LocalHistoryReceipt
fn clone(&self) -> LocalHistoryReceipt
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 LocalHistoryReceipt
impl Debug for LocalHistoryReceipt
Source§impl<'de> Deserialize<'de> for LocalHistoryReceipt
impl<'de> Deserialize<'de> for LocalHistoryReceipt
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 LocalHistoryReceipt
Source§impl PartialEq for LocalHistoryReceipt
impl PartialEq for LocalHistoryReceipt
Source§fn eq(&self, other: &LocalHistoryReceipt) -> bool
fn eq(&self, other: &LocalHistoryReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocalHistoryReceipt
impl Serialize for LocalHistoryReceipt
impl StructuralPartialEq for LocalHistoryReceipt
Auto Trait Implementations§
impl Freeze for LocalHistoryReceipt
impl RefUnwindSafe for LocalHistoryReceipt
impl Send for LocalHistoryReceipt
impl Sync for LocalHistoryReceipt
impl Unpin for LocalHistoryReceipt
impl UnsafeUnpin for LocalHistoryReceipt
impl UnwindSafe for LocalHistoryReceipt
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.