pub enum FrontendSettingValue {
Integer(i64),
String(String),
}Expand description
Scalar value accepted by the generic setting controls.
Variants§
Trait Implementations§
Source§impl Clone for FrontendSettingValue
impl Clone for FrontendSettingValue
Source§fn clone(&self) -> FrontendSettingValue
fn clone(&self) -> FrontendSettingValue
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 Debug for FrontendSettingValue
impl Debug for FrontendSettingValue
Source§impl<'de> Deserialize<'de> for FrontendSettingValue
impl<'de> Deserialize<'de> for FrontendSettingValue
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 FrontendSettingValue
Source§impl PartialEq for FrontendSettingValue
impl PartialEq for FrontendSettingValue
Source§impl Serialize for FrontendSettingValue
impl Serialize for FrontendSettingValue
impl StructuralPartialEq for FrontendSettingValue
Auto Trait Implementations§
impl Freeze for FrontendSettingValue
impl RefUnwindSafe for FrontendSettingValue
impl Send for FrontendSettingValue
impl Sync for FrontendSettingValue
impl Unpin for FrontendSettingValue
impl UnsafeUnpin for FrontendSettingValue
impl UnwindSafe for FrontendSettingValue
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