pub enum GridRowStart {
Auto,
One,
Two,
Three,
Four,
Five,
Six,
Seven,
}
Expand description
Grid row start values
Variants§
Auto
Auto start
One
Start 1
Two
Start 2
Three
Start 3
Four
Start 4
Five
Start 5
Six
Start 6
Seven
Start 7
Implementations§
Source§impl GridRowStart
impl GridRowStart
pub fn to_class_name(&self) -> String
pub fn to_css_value(&self) -> String
Trait Implementations§
Source§impl Clone for GridRowStart
impl Clone for GridRowStart
Source§fn clone(&self) -> GridRowStart
fn clone(&self) -> GridRowStart
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 GridRowStart
impl Debug for GridRowStart
Source§impl<'de> Deserialize<'de> for GridRowStart
impl<'de> Deserialize<'de> for GridRowStart
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 Display for GridRowStart
impl Display for GridRowStart
Source§impl Hash for GridRowStart
impl Hash for GridRowStart
Source§impl PartialEq for GridRowStart
impl PartialEq for GridRowStart
Source§impl Serialize for GridRowStart
impl Serialize for GridRowStart
impl Copy for GridRowStart
impl Eq for GridRowStart
impl StructuralPartialEq for GridRowStart
Auto Trait Implementations§
impl Freeze for GridRowStart
impl RefUnwindSafe for GridRowStart
impl Send for GridRowStart
impl Sync for GridRowStart
impl Unpin for GridRowStart
impl UnwindSafe for GridRowStart
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.