pub struct ConformanceCase {
pub id: String,
pub status: ConformanceStatus,
pub detail: Option<String>,
}Expand description
One conformance case result.
Fields§
§id: StringCase id.
status: ConformanceStatusStatus.
detail: Option<String>Optional detail.
Trait Implementations§
Source§impl Clone for ConformanceCase
impl Clone for ConformanceCase
Source§fn clone(&self) -> ConformanceCase
fn clone(&self) -> ConformanceCase
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 ConformanceCase
impl Debug for ConformanceCase
Source§impl PartialEq for ConformanceCase
impl PartialEq for ConformanceCase
Source§fn eq(&self, other: &ConformanceCase) -> bool
fn eq(&self, other: &ConformanceCase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ConformanceCase
impl StructuralPartialEq for ConformanceCase
Auto Trait Implementations§
impl Freeze for ConformanceCase
impl RefUnwindSafe for ConformanceCase
impl Send for ConformanceCase
impl Sync for ConformanceCase
impl Unpin for ConformanceCase
impl UnsafeUnpin for ConformanceCase
impl UnwindSafe for ConformanceCase
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