pub struct RegressionWarning {
pub file_path: String,
pub conflicting_entries: Vec<(String, String)>,
pub correlation_id: String,
}Expand description
Warning raised when a file conflict is detected.
Fields§
§file_path: String§conflicting_entries: Vec<(String, String)>§correlation_id: StringTrait Implementations§
Source§impl Clone for RegressionWarning
impl Clone for RegressionWarning
Source§fn clone(&self) -> RegressionWarning
fn clone(&self) -> RegressionWarning
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 RegressionWarning
impl RefUnwindSafe for RegressionWarning
impl Send for RegressionWarning
impl Sync for RegressionWarning
impl Unpin for RegressionWarning
impl UnsafeUnpin for RegressionWarning
impl UnwindSafe for RegressionWarning
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