pub struct ColorEntry {
pub name: String,
pub color: String,
}Fields§
§name: String§color: StringTrait Implementations§
Source§impl Clone for ColorEntry
impl Clone for ColorEntry
Source§fn clone(&self) -> ColorEntry
fn clone(&self) -> ColorEntry
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 ColorEntry
impl Debug for ColorEntry
Source§impl Default for ColorEntry
impl Default for ColorEntry
Source§fn default() -> ColorEntry
fn default() -> ColorEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ColorEntry
impl<'de> Deserialize<'de> for ColorEntry
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
Auto Trait Implementations§
impl Freeze for ColorEntry
impl RefUnwindSafe for ColorEntry
impl Send for ColorEntry
impl Sync for ColorEntry
impl Unpin for ColorEntry
impl UnwindSafe for ColorEntry
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