pub struct ConformanceGateResult {
pub gate_id: String,
pub passed: bool,
pub details: String,
}Expand description
Result of a conformance gate check.
Fields§
§gate_id: String§passed: bool§details: StringTrait Implementations§
Source§impl Clone for ConformanceGateResult
impl Clone for ConformanceGateResult
Source§fn clone(&self) -> ConformanceGateResult
fn clone(&self) -> ConformanceGateResult
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 moreAuto Trait Implementations§
impl Freeze for ConformanceGateResult
impl RefUnwindSafe for ConformanceGateResult
impl Send for ConformanceGateResult
impl Sync for ConformanceGateResult
impl Unpin for ConformanceGateResult
impl UnsafeUnpin for ConformanceGateResult
impl UnwindSafe for ConformanceGateResult
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