Struct umm::grade::MutationDiagnosticBuilder
source · pub struct MutationDiagnosticBuilder<TypedBuilderFields = ((), (), (), (), (), (), ())> {
fields: TypedBuilderFields,
phantom: PhantomData<()>,
}
Expand description
Builder for MutationDiagnostic
instances.
See MutationDiagnostic::builder()
for more info.
Fields§
§fields: TypedBuilderFields
§phantom: PhantomData<()>
Implementations§
source§impl<__source_method, __line_number, __test_method, __result, __source_file_name, __test_file_name> MutationDiagnosticBuilder<((), __source_method, __line_number, __test_method, __result, __source_file_name, __test_file_name)>
impl<__source_method, __line_number, __test_method, __result, __source_file_name, __test_file_name> MutationDiagnosticBuilder<((), __source_method, __line_number, __test_method, __result, __source_file_name, __test_file_name)>
source§impl<__mutator, __line_number, __test_method, __result, __source_file_name, __test_file_name> MutationDiagnosticBuilder<(__mutator, (), __line_number, __test_method, __result, __source_file_name, __test_file_name)>
impl<__mutator, __line_number, __test_method, __result, __source_file_name, __test_file_name> MutationDiagnosticBuilder<(__mutator, (), __line_number, __test_method, __result, __source_file_name, __test_file_name)>
pub fn source_method( self, source_method: impl Into<String> ) -> MutationDiagnosticBuilder<(__mutator, (String,), __line_number, __test_method, __result, __source_file_name, __test_file_name)>
source§impl<__mutator, __source_method, __test_method, __result, __source_file_name, __test_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, (), __test_method, __result, __source_file_name, __test_file_name)>
impl<__mutator, __source_method, __test_method, __result, __source_file_name, __test_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, (), __test_method, __result, __source_file_name, __test_file_name)>
pub fn line_number( self, line_number: impl Into<u32> ) -> MutationDiagnosticBuilder<(__mutator, __source_method, (u32,), __test_method, __result, __source_file_name, __test_file_name)>
source§impl<__mutator, __source_method, __line_number, __result, __source_file_name, __test_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, (), __result, __source_file_name, __test_file_name)>
impl<__mutator, __source_method, __line_number, __result, __source_file_name, __test_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, (), __result, __source_file_name, __test_file_name)>
pub fn test_method( self, test_method: impl Into<String> ) -> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, (String,), __result, __source_file_name, __test_file_name)>
source§impl<__mutator, __source_method, __line_number, __test_method, __source_file_name, __test_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, __test_method, (), __source_file_name, __test_file_name)>
impl<__mutator, __source_method, __line_number, __test_method, __source_file_name, __test_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, __test_method, (), __source_file_name, __test_file_name)>
source§impl<__mutator, __source_method, __line_number, __test_method, __result, __test_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, __test_method, __result, (), __test_file_name)>
impl<__mutator, __source_method, __line_number, __test_method, __result, __test_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, __test_method, __result, (), __test_file_name)>
pub fn source_file_name( self, source_file_name: impl Into<String> ) -> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, __test_method, __result, (String,), __test_file_name)>
source§impl<__mutator, __source_method, __line_number, __test_method, __result, __source_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, __test_method, __result, __source_file_name, ())>
impl<__mutator, __source_method, __line_number, __test_method, __result, __source_file_name> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, __test_method, __result, __source_file_name, ())>
pub fn test_file_name( self, test_file_name: impl Into<String> ) -> MutationDiagnosticBuilder<(__mutator, __source_method, __line_number, __test_method, __result, __source_file_name, (String,))>
source§impl MutationDiagnosticBuilder<((String,), (String,), (u32,), (String,), (String,), (String,), (String,))>
impl MutationDiagnosticBuilder<((String,), (String,), (u32,), (String,), (String,), (String,), (String,))>
sourcepub fn build(self) -> MutationDiagnostic
pub fn build(self) -> MutationDiagnostic
Finalise the builder and create its MutationDiagnostic
instance
Trait Implementations§
Auto Trait Implementations§
impl<TypedBuilderFields> RefUnwindSafe for MutationDiagnosticBuilder<TypedBuilderFields>where
TypedBuilderFields: RefUnwindSafe,
impl<TypedBuilderFields> Send for MutationDiagnosticBuilder<TypedBuilderFields>where
TypedBuilderFields: Send,
impl<TypedBuilderFields> Sync for MutationDiagnosticBuilder<TypedBuilderFields>where
TypedBuilderFields: Sync,
impl<TypedBuilderFields> Unpin for MutationDiagnosticBuilder<TypedBuilderFields>where
TypedBuilderFields: Unpin,
impl<TypedBuilderFields> UnwindSafe for MutationDiagnosticBuilder<TypedBuilderFields>where
TypedBuilderFields: UnwindSafe,
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