pub struct ApprovalGrant {
pub grant_id: ApprovalGrantId,
pub approval_record_id: Option<ApprovalRecordId>,
pub decision_id: Option<PolicyDecisionId>,
pub policy_version: String,
pub scope: ApprovalGrantScope,
pub approver_lineage: Vec<String>,
pub approved_at: String,
pub expires_at: Option<String>,
pub citation: ApprovalGrantCitation,
}Fields§
§grant_id: ApprovalGrantId§approval_record_id: Option<ApprovalRecordId>§decision_id: Option<PolicyDecisionId>§policy_version: String§scope: ApprovalGrantScope§approver_lineage: Vec<String>§approved_at: String§expires_at: Option<String>§citation: ApprovalGrantCitationImplementations§
Source§impl ApprovalGrant
impl ApprovalGrant
Trait Implementations§
Source§impl Clone for ApprovalGrant
impl Clone for ApprovalGrant
Source§fn clone(&self) -> ApprovalGrant
fn clone(&self) -> ApprovalGrant
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 ApprovalGrant
impl Debug for ApprovalGrant
Source§impl<'de> Deserialize<'de> for ApprovalGrant
impl<'de> Deserialize<'de> for ApprovalGrant
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 ApprovalGrant
Source§impl PartialEq for ApprovalGrant
impl PartialEq for ApprovalGrant
Source§impl Serialize for ApprovalGrant
impl Serialize for ApprovalGrant
impl StructuralPartialEq for ApprovalGrant
Auto Trait Implementations§
impl Freeze for ApprovalGrant
impl RefUnwindSafe for ApprovalGrant
impl Send for ApprovalGrant
impl Sync for ApprovalGrant
impl Unpin for ApprovalGrant
impl UnsafeUnpin for ApprovalGrant
impl UnwindSafe for ApprovalGrant
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