pub struct FixtureCreationError {
pub fixture_name: String,
pub error: Arc<dyn Error + Sync + Send>,
}
Expand description
Represents an error that occurs during the creation of a fixture.
Fields§
§fixture_name: String
§error: Arc<dyn Error + Sync + Send>
Implementations§
Trait Implementations§
Source§impl Clone for FixtureCreationError
impl Clone for FixtureCreationError
Source§fn clone(&self) -> FixtureCreationError
fn clone(&self) -> FixtureCreationError
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 FixtureCreationError
impl !RefUnwindSafe for FixtureCreationError
impl Send for FixtureCreationError
impl Sync for FixtureCreationError
impl Unpin for FixtureCreationError
impl !UnwindSafe for FixtureCreationError
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