pub struct ReviewGate {
pub reason: GateReason,
pub gate: ReviewGate,
}Expand description
Specific care-review gate created from missing or sensitive boarding profile evidence.
Fields§
§reason: GateReasonCare-profile reason that triggered the gate.
gate: ReviewGateHuman review category required to clear this care issue.
Implementations§
Source§impl ReviewGate
impl ReviewGate
Sourcepub const fn new(reason: GateReason, gate: ReviewGate) -> Self
pub const fn new(reason: GateReason, gate: ReviewGate) -> Self
Creates a care-review gate with the operational reason and required review category.
Trait Implementations§
Source§impl Clone for ReviewGate
impl Clone for ReviewGate
Source§fn clone(&self) -> ReviewGate
fn clone(&self) -> ReviewGate
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 ReviewGate
impl Debug for ReviewGate
Source§impl<'de> Deserialize<'de> for ReviewGate
impl<'de> Deserialize<'de> for ReviewGate
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 ReviewGate
impl PartialEq for ReviewGate
Source§impl Serialize for ReviewGate
impl Serialize for ReviewGate
impl Eq for ReviewGate
impl StructuralPartialEq for ReviewGate
Auto Trait Implementations§
impl Freeze for ReviewGate
impl RefUnwindSafe for ReviewGate
impl Send for ReviewGate
impl Sync for ReviewGate
impl Unpin for ReviewGate
impl UnsafeUnpin for ReviewGate
impl UnwindSafe for ReviewGate
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