pub enum FrontendComponentType {
Card,
Widget,
Panel,
Dialog,
Settings,
}Expand description
Component type enumeration
Variants§
Card
Dashboard card component
Widget
Widget component
Panel
Panel component
Dialog
Dialog component
Settings
Settings component
Trait Implementations§
Source§impl Clone for FrontendComponentType
impl Clone for FrontendComponentType
Source§fn clone(&self) -> FrontendComponentType
fn clone(&self) -> FrontendComponentType
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 FrontendComponentType
impl Debug for FrontendComponentType
Source§impl<'de> Deserialize<'de> for FrontendComponentType
impl<'de> Deserialize<'de> for FrontendComponentType
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 FrontendComponentType
impl PartialEq for FrontendComponentType
Source§fn eq(&self, other: &FrontendComponentType) -> bool
fn eq(&self, other: &FrontendComponentType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FrontendComponentType
impl Serialize for FrontendComponentType
impl Eq for FrontendComponentType
impl StructuralPartialEq for FrontendComponentType
Auto Trait Implementations§
impl Freeze for FrontendComponentType
impl RefUnwindSafe for FrontendComponentType
impl Send for FrontendComponentType
impl Sync for FrontendComponentType
impl Unpin for FrontendComponentType
impl UnsafeUnpin for FrontendComponentType
impl UnwindSafe for FrontendComponentType
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