pub trait StringExt {
// Required method
fn is_numeric(&self) -> bool;
}Expand description
Add persistent-identifier utilities to string values.
Required Methods§
Sourcefn is_numeric(&self) -> bool
fn is_numeric(&self) -> bool
Check whether all characters in a string are numeric.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".