pub enum GridRowStart {
Start1,
Start2,
Start3,
Start4,
Start5,
Start6,
Start7,
Auto,
}Expand description
Re-export core tailwind-rs functionality Grid row start values
Variants§
Start1
Start at row 1
Start2
Start at row 2
Start3
Start at row 3
Start4
Start at row 4
Start5
Start at row 5
Start6
Start at row 6
Start7
Start at row 7
Auto
Auto start
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<GridRowStart, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GridRowStart, <__D as Deserializer<'de>>::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
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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.