pub enum CardPattern {
Plain,
Raised,
Tinted,
Elevated,
}Variants§
Trait Implementations§
Source§impl Clone for CardPattern
impl Clone for CardPattern
Source§fn clone(&self) -> CardPattern
fn clone(&self) -> CardPattern
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 CardPattern
impl Debug for CardPattern
Source§impl Default for CardPattern
impl Default for CardPattern
Source§fn default() -> CardPattern
fn default() -> CardPattern
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CardPattern
impl<'de> Deserialize<'de> for CardPattern
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 CardPattern
impl PartialEq for CardPattern
Source§fn eq(&self, other: &CardPattern) -> bool
fn eq(&self, other: &CardPattern) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CardPattern
impl Serialize for CardPattern
impl Copy for CardPattern
impl Eq for CardPattern
impl StructuralPartialEq for CardPattern
Auto Trait Implementations§
impl Freeze for CardPattern
impl RefUnwindSafe for CardPattern
impl Send for CardPattern
impl Sync for CardPattern
impl Unpin for CardPattern
impl UnsafeUnpin for CardPattern
impl UnwindSafe for CardPattern
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