pub struct ApprovalRecord {
pub schema_version: String,
pub approval_record_id: ApprovalRecordId,
pub policy_version: String,
pub case_id: Option<VerificationCaseId>,
pub plan_id: Option<CheckPlanId>,
pub scope: ApprovalScope,
pub approver: String,
pub approved_at: String,
pub reviewed_artifact_refs: Vec<String>,
pub rationale: String,
}Fields§
§schema_version: String§approval_record_id: ApprovalRecordId§policy_version: String§case_id: Option<VerificationCaseId>§plan_id: Option<CheckPlanId>§scope: ApprovalScope§approver: String§approved_at: String§reviewed_artifact_refs: Vec<String>§rationale: StringImplementations§
Source§impl ApprovalRecord
impl ApprovalRecord
Sourcepub fn new(
policy_version: impl Into<String>,
case_id: Option<VerificationCaseId>,
plan_id: Option<CheckPlanId>,
scope: ApprovalScope,
approver: impl Into<String>,
approved_at: impl Into<String>,
reviewed_artifact_refs: Vec<String>,
rationale: impl Into<String>,
) -> Self
pub fn new( policy_version: impl Into<String>, case_id: Option<VerificationCaseId>, plan_id: Option<CheckPlanId>, scope: ApprovalScope, approver: impl Into<String>, approved_at: impl Into<String>, reviewed_artifact_refs: Vec<String>, rationale: impl Into<String>, ) -> Self
Creates an approval record bound to a policy version, optional case, and optional plan.
Trait Implementations§
Source§impl Clone for ApprovalRecord
impl Clone for ApprovalRecord
Source§fn clone(&self) -> ApprovalRecord
fn clone(&self) -> ApprovalRecord
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 ApprovalRecord
impl Debug for ApprovalRecord
Source§impl<'de> Deserialize<'de> for ApprovalRecord
impl<'de> Deserialize<'de> for ApprovalRecord
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 ApprovalRecord
Source§impl JsonSchema for ApprovalRecord
impl JsonSchema for ApprovalRecord
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ApprovalRecord
impl PartialEq for ApprovalRecord
Source§fn eq(&self, other: &ApprovalRecord) -> bool
fn eq(&self, other: &ApprovalRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApprovalRecord
impl Serialize for ApprovalRecord
impl StructuralPartialEq for ApprovalRecord
Auto Trait Implementations§
impl Freeze for ApprovalRecord
impl RefUnwindSafe for ApprovalRecord
impl Send for ApprovalRecord
impl Sync for ApprovalRecord
impl Unpin for ApprovalRecord
impl UnsafeUnpin for ApprovalRecord
impl UnwindSafe for ApprovalRecord
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