Trait should::traits::start_end::ShouldStartWithString
source · pub trait ShouldStartWithString {
// Required methods
fn should_start_with(&self, expected: impl Into<String>);
fn should_not_start_with(&self, expected: impl Into<String>);
fn should_end_with(&self, expected: impl Into<String>);
fn should_not_end_with(&self, expected: impl Into<String>);
}