pub enum AutocompleteTelType {
Tel,
TelCountryCode,
TelNational,
TelAreaCode,
TelLocal,
TelLocalPrefix,
TelLocalSuffix,
TelExtension,
}Variants§
Tel
A full telephone number, including the country code.
TelCountryCode
The country code, such as “1” for the United States, Canada, and other areas in North America and parts of the Caribbean.
TelNational
The entire phone number without the country code component, including a country-internal prefix. For the phone number “1-855-555-6502”, this field’s value would be “855-555-6502”.
TelAreaCode
The area code, with any country-internal prefix applied if appropriate.
TelLocal
The phone number without the country or area code. This can be split further into two parts, for phone numbers which have an exchange number and then a number within the exchange. For the phone number “555-6502”, use “tel-local-prefix” for “555” and “tel-local-suffix” for “6502”.
TelLocalPrefix
TelLocalSuffix
TelExtension
A telephone extension code within the phone number, such as a room or suite number in a hotel or an office extension in a company.
Trait Implementations§
Source§impl Clone for AutocompleteTelType
impl Clone for AutocompleteTelType
Source§fn clone(&self) -> AutocompleteTelType
fn clone(&self) -> AutocompleteTelType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for AutocompleteTelType
impl PartialEq for AutocompleteTelType
impl StructuralPartialEq for AutocompleteTelType
Auto Trait Implementations§
impl Freeze for AutocompleteTelType
impl RefUnwindSafe for AutocompleteTelType
impl Send for AutocompleteTelType
impl Sync for AutocompleteTelType
impl Unpin for AutocompleteTelType
impl UnwindSafe for AutocompleteTelType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
Source§fn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
self to a value of a Properties struct.Source§impl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
Source§fn into_prop_value(self) -> T
fn into_prop_value(self) -> T
self to a value of a Properties struct.