Trait FindSubstring
pub trait FindSubstring<T> {
// Required method
fn find_substring(&self, substr: T) -> Option<usize>;
}Available on crate feature
rustls only.Expand description
Look for a substring in self
Required Methods§
fn find_substring(&self, substr: T) -> Option<usize>
fn find_substring(&self, substr: T) -> Option<usize>
Returns the byte position of the substring if it is found
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".