pub enum UIElicitationSchemaPropertyStringFormat {
Email,
Uri,
Date,
DateTime,
Unknown,
}Expand description
Optional format hint that constrains the accepted input.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Variants§
Email address string format.
Uri
URI string format.
Date
Calendar date string format.
DateTime
Date-time string format.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for UIElicitationSchemaPropertyStringFormat
impl Clone for UIElicitationSchemaPropertyStringFormat
Source§fn clone(&self) -> UIElicitationSchemaPropertyStringFormat
fn clone(&self) -> UIElicitationSchemaPropertyStringFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for UIElicitationSchemaPropertyStringFormat
impl Default for UIElicitationSchemaPropertyStringFormat
Source§fn default() -> UIElicitationSchemaPropertyStringFormat
fn default() -> UIElicitationSchemaPropertyStringFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UIElicitationSchemaPropertyStringFormat
impl<'de> Deserialize<'de> for UIElicitationSchemaPropertyStringFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for UIElicitationSchemaPropertyStringFormat
Source§impl PartialEq for UIElicitationSchemaPropertyStringFormat
impl PartialEq for UIElicitationSchemaPropertyStringFormat
Source§fn eq(&self, other: &UIElicitationSchemaPropertyStringFormat) -> bool
fn eq(&self, other: &UIElicitationSchemaPropertyStringFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UIElicitationSchemaPropertyStringFormat
Auto Trait Implementations§
impl Freeze for UIElicitationSchemaPropertyStringFormat
impl RefUnwindSafe for UIElicitationSchemaPropertyStringFormat
impl Send for UIElicitationSchemaPropertyStringFormat
impl Sync for UIElicitationSchemaPropertyStringFormat
impl Unpin for UIElicitationSchemaPropertyStringFormat
impl UnsafeUnpin for UIElicitationSchemaPropertyStringFormat
impl UnwindSafe for UIElicitationSchemaPropertyStringFormat
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
Mutably borrows from an owned value. Read more