pub struct DraftValidation { /* private fields */ }Expand description
Draft validation carried by the data-quality hygiene workflow; it finds duplicate, stale, or inconsistent records while blocking automatic provider-system mutation.
Implementations§
Source§impl DraftValidation
impl DraftValidation
Sourcepub fn is_accepted(&self) -> bool
pub fn is_accepted(&self) -> bool
Reports whether the data-quality hygiene workflow satisfies the is accepted safety condition.
Sourcepub fn rejection_reasons(&self) -> &[DraftRejectionReason]
pub fn rejection_reasons(&self) -> &[DraftRejectionReason]
Returns the rejection reasons source evidence carried by this data-quality hygiene workflow artifact without changing provider, customer, payment, or schedule state.
Trait Implementations§
Source§impl Clone for DraftValidation
impl Clone for DraftValidation
Source§fn clone(&self) -> DraftValidation
fn clone(&self) -> DraftValidation
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 DraftValidation
impl Debug for DraftValidation
Source§impl<'de> Deserialize<'de> for DraftValidation
impl<'de> Deserialize<'de> for DraftValidation
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 DraftValidation
impl PartialEq for DraftValidation
Source§impl Serialize for DraftValidation
impl Serialize for DraftValidation
impl Eq for DraftValidation
impl StructuralPartialEq for DraftValidation
Auto Trait Implementations§
impl Freeze for DraftValidation
impl RefUnwindSafe for DraftValidation
impl Send for DraftValidation
impl Sync for DraftValidation
impl Unpin for DraftValidation
impl UnsafeUnpin for DraftValidation
impl UnwindSafe for DraftValidation
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