I have unit tests in a cargo named school-info and there is a test method called repeat_students_should_not_get_full_marks() .
I can run all tests in the module by cargo test --package school_info .
How may I only run the test repeat_students_should_not_get_full_marks other than running all the tests? I could not find a command in Rust documentation to do it .What will be the command?