Enum architect_api::utils::option_type::OptionType
source · pub enum OptionType {
Call,
Put,
}Variants§
Implementations§
source§impl OptionType
impl OptionType
pub fn flip(&self) -> Self
pub fn to_char(&self) -> char
pub fn from_char(c: char) -> Result<Self>
pub fn to_str_uppercase(&self) -> &'static str
pub fn from_str_uppercase(s: &str) -> Result<Self>
pub fn to_str_lowercase(&self) -> &'static str
pub fn from_str_lowercase(s: &str) -> Result<Self>
Trait Implementations§
source§impl Clone for OptionType
impl Clone for OptionType
source§fn clone(&self) -> OptionType
fn clone(&self) -> OptionType
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 OptionType
impl Debug for OptionType
source§impl<'de> Deserialize<'de> for OptionType
impl<'de> Deserialize<'de> for OptionType
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
source§impl FromStr for OptionType
impl FromStr for OptionType
source§impl PartialEq for OptionType
impl PartialEq for OptionType
source§fn eq(&self, other: &OptionType) -> bool
fn eq(&self, other: &OptionType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for OptionType
impl Serialize for OptionType
impl Copy for OptionType
impl Eq for OptionType
impl StructuralPartialEq for OptionType
Auto Trait Implementations§
impl Freeze for OptionType
impl RefUnwindSafe for OptionType
impl Send for OptionType
impl Sync for OptionType
impl Unpin for OptionType
impl UnwindSafe for OptionType
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.