pub struct ApprovalEntryRecord {
pub answer: Value,
pub answered_at: String,
pub approval: ApprovalScopeRecord,
pub updated_at: String,
pub user: String,
}Expand description
Stored approval decision for one user and contract digest.
Fields§
§answer: Value§answered_at: String§approval: ApprovalScopeRecord§updated_at: String§user: StringTrait Implementations§
Source§impl Clone for ApprovalEntryRecord
impl Clone for ApprovalEntryRecord
Source§fn clone(&self) -> ApprovalEntryRecord
fn clone(&self) -> ApprovalEntryRecord
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 ApprovalEntryRecord
impl Debug for ApprovalEntryRecord
Source§impl<'de> Deserialize<'de> for ApprovalEntryRecord
impl<'de> Deserialize<'de> for ApprovalEntryRecord
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 ApprovalEntryRecord
impl PartialEq for ApprovalEntryRecord
Source§impl Serialize for ApprovalEntryRecord
impl Serialize for ApprovalEntryRecord
impl StructuralPartialEq for ApprovalEntryRecord
Auto Trait Implementations§
impl Freeze for ApprovalEntryRecord
impl RefUnwindSafe for ApprovalEntryRecord
impl Send for ApprovalEntryRecord
impl Sync for ApprovalEntryRecord
impl Unpin for ApprovalEntryRecord
impl UnsafeUnpin for ApprovalEntryRecord
impl UnwindSafe for ApprovalEntryRecord
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