pub trait TryIntoE164: Sized {
// Required method
fn try_into_e164(self) -> Result<E164, <E164 as FromStr>::Err>;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl TryIntoE164 for &PhoneNumber
Available on crate feature phonenumber only.
impl TryIntoE164 for &PhoneNumber
Available on crate feature
phonenumber only.Source§impl TryIntoE164 for &str
impl TryIntoE164 for &str
Source§impl TryIntoE164 for PhoneNumber
Available on crate feature phonenumber only.
impl TryIntoE164 for PhoneNumber
Available on crate feature
phonenumber only.