pub enum IsCustomizable {
True,
False,
UnknownValue(String),
}Expand description
Customizable.
Variants§
Implementations§
Source§impl IsCustomizable
impl IsCustomizable
pub fn serialize<__S>(
__self: &IsCustomizable,
__serializer: __S,
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Source§impl<'de> IsCustomizable
impl<'de> IsCustomizable
pub fn deserialize<__D>(
__deserializer: __D,
) -> Result<IsCustomizable, __D::Error>where
__D: Deserializer<'de>,
Trait Implementations§
Source§impl Clone for IsCustomizable
impl Clone for IsCustomizable
Source§fn clone(&self) -> IsCustomizable
fn clone(&self) -> IsCustomizable
Returns a duplicate 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 IsCustomizable
impl Debug for IsCustomizable
Source§impl<'de> Deserialize<'de> for IsCustomizable
impl<'de> Deserialize<'de> for IsCustomizable
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 IsCustomizable
impl FromStr for IsCustomizable
Source§impl PartialEq for IsCustomizable
impl PartialEq for IsCustomizable
Source§impl Serialize for IsCustomizable
impl Serialize for IsCustomizable
impl StructuralPartialEq for IsCustomizable
Auto Trait Implementations§
impl Freeze for IsCustomizable
impl RefUnwindSafe for IsCustomizable
impl Send for IsCustomizable
impl Sync for IsCustomizable
impl Unpin for IsCustomizable
impl UnwindSafe for IsCustomizable
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