pub struct DagDbCouncilDecisionResponse {Show 19 fields
pub schema_version: String,
pub tenant_id: String,
pub namespace: String,
pub idempotency_key: String,
pub decision_id: String,
pub subject_kind: SubjectKind,
pub subject_id: String,
pub receipt_hash: String,
pub validation_status: ValidationStatus,
pub council_status: CouncilReviewStatus,
pub decision_status: CouncilDecisionStatus,
pub approved_scope_hash: String,
pub risk_class: RiskClass,
pub expires_at: String,
pub created_new: bool,
pub validation_report_id: Option<String>,
pub route_id: Option<String>,
pub context_packet_id: Option<String>,
pub notes: Option<SafeMetadata>,
}Expand description
Council decision response.
Fields§
§schema_version: StringStable wire-contract version (dagdb_council_decision_response_v1).
tenant_id: String§namespace: String§idempotency_key: String§decision_id: String§subject_kind: SubjectKind§subject_id: String§receipt_hash: String§validation_status: ValidationStatus§council_status: CouncilReviewStatus§decision_status: CouncilDecisionStatus§approved_scope_hash: String§risk_class: RiskClass§expires_at: String§created_new: bool§validation_report_id: Option<String>§route_id: Option<String>§context_packet_id: Option<String>§notes: Option<SafeMetadata>Trait Implementations§
Source§impl Clone for DagDbCouncilDecisionResponse
impl Clone for DagDbCouncilDecisionResponse
Source§fn clone(&self) -> DagDbCouncilDecisionResponse
fn clone(&self) -> DagDbCouncilDecisionResponse
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 DagDbCouncilDecisionResponse
impl Debug for DagDbCouncilDecisionResponse
Source§impl<'de> Deserialize<'de> for DagDbCouncilDecisionResponse
impl<'de> Deserialize<'de> for DagDbCouncilDecisionResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbCouncilDecisionResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbCouncilDecisionResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DagDbCouncilDecisionResponse
Source§impl PartialEq for DagDbCouncilDecisionResponse
impl PartialEq for DagDbCouncilDecisionResponse
Source§fn eq(&self, other: &DagDbCouncilDecisionResponse) -> bool
fn eq(&self, other: &DagDbCouncilDecisionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DagDbCouncilDecisionResponse
impl Serialize for DagDbCouncilDecisionResponse
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
impl StructuralPartialEq for DagDbCouncilDecisionResponse
Auto Trait Implementations§
impl Freeze for DagDbCouncilDecisionResponse
impl RefUnwindSafe for DagDbCouncilDecisionResponse
impl Send for DagDbCouncilDecisionResponse
impl Sync for DagDbCouncilDecisionResponse
impl Unpin for DagDbCouncilDecisionResponse
impl UnsafeUnpin for DagDbCouncilDecisionResponse
impl UnwindSafe for DagDbCouncilDecisionResponse
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