#[repr(i32)]pub enum StringFieldValidation {
    Unknown,
    Mandatory,
    Hint,
    None,
}Variants§
Implementations§
source§impl StringFieldValidation
 
impl StringFieldValidation
sourcepub fn is_valid(value: i32) -> bool
 
pub fn is_valid(value: i32) -> bool
Returns true if value is a variant of StringFieldValidation.
sourcepub fn from_i32(value: i32) -> Option<StringFieldValidation>
 👎Deprecated: Use the TryFrom<i32> implementation instead
pub fn from_i32(value: i32) -> Option<StringFieldValidation>
Converts an i32 to a StringFieldValidation, or None if value is not a valid variant.
source§impl StringFieldValidation
 
impl StringFieldValidation
sourcepub fn as_str_name(&self) -> &'static str
 
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
sourcepub fn from_str_name(value: &str) -> Option<Self>
 
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
source§impl Clone for StringFieldValidation
 
impl Clone for StringFieldValidation
source§fn clone(&self) -> StringFieldValidation
 
fn clone(&self) -> StringFieldValidation
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for StringFieldValidation
 
impl Debug for StringFieldValidation
source§impl Default for StringFieldValidation
 
impl Default for StringFieldValidation
source§fn default() -> StringFieldValidation
 
fn default() -> StringFieldValidation
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for StringFieldValidation
 
impl<'de> Deserialize<'de> for StringFieldValidation
§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
source§impl From<StringFieldValidation> for i32
 
impl From<StringFieldValidation> for i32
source§fn from(value: StringFieldValidation) -> i32
 
fn from(value: StringFieldValidation) -> i32
Converts to this type from the input type.
source§impl Hash for StringFieldValidation
 
impl Hash for StringFieldValidation
source§impl Ord for StringFieldValidation
 
impl Ord for StringFieldValidation
source§fn cmp(&self, other: &StringFieldValidation) -> Ordering
 
fn cmp(&self, other: &StringFieldValidation) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<StringFieldValidation> for StringFieldValidation
 
impl PartialEq<StringFieldValidation> for StringFieldValidation
source§fn eq(&self, other: &StringFieldValidation) -> bool
 
fn eq(&self, other: &StringFieldValidation) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<StringFieldValidation> for StringFieldValidation
 
impl PartialOrd<StringFieldValidation> for StringFieldValidation
source§fn partial_cmp(&self, other: &StringFieldValidation) -> Option<Ordering>
 
fn partial_cmp(&self, other: &StringFieldValidation) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read more§impl Serialize for StringFieldValidation
 
impl Serialize for StringFieldValidation
source§impl TryFrom<i32> for StringFieldValidation
 
impl TryFrom<i32> for StringFieldValidation
§type Error = DecodeError
 
type Error = DecodeError
The type returned in the event of a conversion error.
source§fn try_from(value: i32) -> Result<StringFieldValidation, DecodeError>
 
fn try_from(value: i32) -> Result<StringFieldValidation, DecodeError>
Performs the conversion.
impl Copy for StringFieldValidation
impl Eq for StringFieldValidation
impl StructuralEq for StringFieldValidation
impl StructuralPartialEq for StringFieldValidation
Auto Trait Implementations§
impl RefUnwindSafe for StringFieldValidation
impl Send for StringFieldValidation
impl Sync for StringFieldValidation
impl Unpin for StringFieldValidation
impl UnwindSafe for StringFieldValidation
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