pub enum OutcomeCode {
Accepted,
Transformed,
RejectedBlockedField,
}Expand description
Stable enforcement outcome code.
Variants§
Accepted
Accepted without transforming.
Transformed
Accepted after applying one or more transforms.
RejectedBlockedField
Rejected due to a sensitive field being present.
Trait Implementations§
Source§impl Clone for OutcomeCode
impl Clone for OutcomeCode
Source§fn clone(&self) -> OutcomeCode
fn clone(&self) -> OutcomeCode
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 OutcomeCode
impl Debug for OutcomeCode
Source§impl PartialEq for OutcomeCode
impl PartialEq for OutcomeCode
impl Copy for OutcomeCode
impl Eq for OutcomeCode
impl StructuralPartialEq for OutcomeCode
Auto Trait Implementations§
impl Freeze for OutcomeCode
impl RefUnwindSafe for OutcomeCode
impl Send for OutcomeCode
impl Sync for OutcomeCode
impl Unpin for OutcomeCode
impl UnwindSafe for OutcomeCode
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