pub struct SourceConformanceCase {
pub symbol: Symbol,
pub organ: Symbol,
pub source_name: String,
pub source: String,
pub expectation: SourceExpectation,
pub affects_badge: Option<Symbol>,
}Expand description
One source-language conformance case.
Fields§
§symbol: SymbolStable symbol identifying this case.
organ: SymbolOrgan exercised by this case.
source_name: StringSource filename or display name.
source: StringSource text.
expectation: SourceExpectationExpected result.
affects_badge: Option<Symbol>Fidelity badge affected by this case, if any.
Trait Implementations§
Source§impl Clone for SourceConformanceCase
impl Clone for SourceConformanceCase
Source§fn clone(&self) -> SourceConformanceCase
fn clone(&self) -> SourceConformanceCase
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 SourceConformanceCase
impl Debug for SourceConformanceCase
impl Eq for SourceConformanceCase
Source§impl PartialEq for SourceConformanceCase
impl PartialEq for SourceConformanceCase
Source§fn eq(&self, other: &SourceConformanceCase) -> bool
fn eq(&self, other: &SourceConformanceCase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SourceConformanceCase
Auto Trait Implementations§
impl Freeze for SourceConformanceCase
impl RefUnwindSafe for SourceConformanceCase
impl Send for SourceConformanceCase
impl Sync for SourceConformanceCase
impl Unpin for SourceConformanceCase
impl UnsafeUnpin for SourceConformanceCase
impl UnwindSafe for SourceConformanceCase
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.