pub struct DagDbIntakeResponse {Show 18 fields
pub schema_version: String,
pub tenant_id: String,
pub namespace: String,
pub idempotency_key: String,
pub memory_id: String,
pub receipt_hash: String,
pub validation_status: ValidationStatus,
pub council_status: CouncilReviewStatus,
pub dag_finality_status: DagFinalityStatus,
pub risk_class: RiskClass,
pub risk_bp: u16,
pub created_new: bool,
pub title: SafeMetadata,
pub summary: SafeMetadata,
pub keywords: Vec<SafeMetadata>,
pub validation_report_id: Option<String>,
pub council_decision_id: Option<String>,
pub duplicate_of_memory_id: Option<String>,
}Expand description
Intake response.
Fields§
§schema_version: StringStable wire-contract version (dagdb_intake_response_v1).
tenant_id: String§namespace: String§idempotency_key: String§memory_id: String§receipt_hash: String§validation_status: ValidationStatus§council_status: CouncilReviewStatus§dag_finality_status: DagFinalityStatus§risk_class: RiskClass§risk_bp: u16§created_new: bool§title: SafeMetadata§summary: SafeMetadata§keywords: Vec<SafeMetadata>§validation_report_id: Option<String>§council_decision_id: Option<String>§duplicate_of_memory_id: Option<String>Trait Implementations§
Source§impl Clone for DagDbIntakeResponse
impl Clone for DagDbIntakeResponse
Source§fn clone(&self) -> DagDbIntakeResponse
fn clone(&self) -> DagDbIntakeResponse
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 DagDbIntakeResponse
impl Debug for DagDbIntakeResponse
Source§impl<'de> Deserialize<'de> for DagDbIntakeResponse
impl<'de> Deserialize<'de> for DagDbIntakeResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbIntakeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbIntakeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DagDbIntakeResponse
Source§impl PartialEq for DagDbIntakeResponse
impl PartialEq for DagDbIntakeResponse
Source§fn eq(&self, other: &DagDbIntakeResponse) -> bool
fn eq(&self, other: &DagDbIntakeResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DagDbIntakeResponse
impl Serialize for DagDbIntakeResponse
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 DagDbIntakeResponse
Auto Trait Implementations§
impl Freeze for DagDbIntakeResponse
impl RefUnwindSafe for DagDbIntakeResponse
impl Send for DagDbIntakeResponse
impl Sync for DagDbIntakeResponse
impl Unpin for DagDbIntakeResponse
impl UnsafeUnpin for DagDbIntakeResponse
impl UnwindSafe for DagDbIntakeResponse
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