pub enum IconSet {
Show 20 variants
Star,
Circle,
Fire,
Bug,
Diamond,
Bell,
Thumbsup,
Heart,
Chili,
Smiley,
Lightning,
Currency,
Coffee,
Person,
Battery,
Cocktail,
Cloud,
Sun,
Checkmark,
Lightbulb,
}
Expand description
List of available icon sets.
JSON schema
{
"description": "List of available icon sets.",
"type": "string",
"enum": [
"star",
"circle",
"fire",
"bug",
"diamond",
"bell",
"thumbsup",
"heart",
"chili",
"smiley",
"lightning",
"currency",
"coffee",
"person",
"battery",
"cocktail",
"cloud",
"sun",
"checkmark",
"lightbulb"
],
"x-schema-name": "IconSet",
"x-tsEnumNames": [
"Star",
"Circle",
"Fire",
"Bug",
"Diamond",
"Bell",
"ThumbsUp",
"Heart",
"Chili",
"Smiley",
"Lightning",
"Currency",
"Coffee",
"Person",
"Battery",
"Cocktail",
"Cloud",
"Sun",
"Checkmark",
"LightBulb"
]
}
Variants§
Star
Circle
Fire
Bug
Diamond
Bell
Thumbsup
Heart
Chili
Smiley
Lightning
Currency
Coffee
Person
Battery
Cocktail
Cloud
Sun
Checkmark
Lightbulb
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IconSet
impl<'de> Deserialize<'de> for IconSet
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 Ord for IconSet
impl Ord for IconSet
Source§impl PartialOrd for IconSet
impl PartialOrd for IconSet
Source§impl TryFrom<&String> for IconSet
impl TryFrom<&String> for IconSet
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for IconSet
impl TryFrom<&str> for IconSet
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for IconSet
impl TryFrom<String> for IconSet
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for IconSet
impl Eq for IconSet
impl StructuralPartialEq for IconSet
Auto Trait Implementations§
impl Freeze for IconSet
impl RefUnwindSafe for IconSet
impl Send for IconSet
impl Sync for IconSet
impl Unpin for IconSet
impl UnwindSafe for IconSet
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: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.