pub struct UncoveredBehavior {
pub file: PathBuf,
pub line: usize,
pub description: String,
pub suggested_clause: String,
pub suggested_keyword: Keyword,
pub suggested_spec: PathBuf,
}Expand description
A behavior found in source code with no corresponding spec clause.
Fields§
§file: PathBuf§line: usize§description: String§suggested_clause: String§suggested_keyword: Keyword§suggested_spec: PathBufTrait Implementations§
Source§impl Clone for UncoveredBehavior
impl Clone for UncoveredBehavior
Source§fn clone(&self) -> UncoveredBehavior
fn clone(&self) -> UncoveredBehavior
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 moreAuto Trait Implementations§
impl Freeze for UncoveredBehavior
impl RefUnwindSafe for UncoveredBehavior
impl Send for UncoveredBehavior
impl Sync for UncoveredBehavior
impl Unpin for UncoveredBehavior
impl UnsafeUnpin for UncoveredBehavior
impl UnwindSafe for UncoveredBehavior
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