pub enum PreviewValue {
Text {
text: String,
},
TextList {
items: Vec<String>,
},
Number {
value: f64,
},
Bool {
value: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for PreviewValue
impl Clone for PreviewValue
Source§fn clone(&self) -> PreviewValue
fn clone(&self) -> PreviewValue
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 PreviewValue
impl Debug for PreviewValue
Source§impl<'de> Deserialize<'de> for PreviewValue
impl<'de> Deserialize<'de> for PreviewValue
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 PartialEq for PreviewValue
impl PartialEq for PreviewValue
Source§impl Serialize for PreviewValue
impl Serialize for PreviewValue
impl StructuralPartialEq for PreviewValue
Auto Trait Implementations§
impl Freeze for PreviewValue
impl RefUnwindSafe for PreviewValue
impl Send for PreviewValue
impl Sync for PreviewValue
impl Unpin for PreviewValue
impl UnsafeUnpin for PreviewValue
impl UnwindSafe for PreviewValue
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