pub struct TailwindDivide {}
Implementations§
Source§impl TailwindDivide
impl TailwindDivide
Sourcepub fn adapt(
str: &[&str],
arbitrary: &TailwindArbitrary,
) -> Result<Box<dyn TailwindInstance>>
pub fn adapt( str: &[&str], arbitrary: &TailwindArbitrary, ) -> Result<Box<dyn TailwindInstance>>
Parse the instructions starting with divide
.
Trait Implementations§
Source§impl Clone for TailwindDivide
impl Clone for TailwindDivide
Source§fn clone(&self) -> TailwindDivide
fn clone(&self) -> TailwindDivide
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 TailwindDivide
impl Debug for TailwindDivide
Source§impl Default for TailwindDivide
impl Default for TailwindDivide
Source§fn default() -> TailwindDivide
fn default() -> TailwindDivide
Returns the “default value” for a type. Read more
impl Copy for TailwindDivide
Auto Trait Implementations§
impl Freeze for TailwindDivide
impl RefUnwindSafe for TailwindDivide
impl Send for TailwindDivide
impl Sync for TailwindDivide
impl Unpin for TailwindDivide
impl UnwindSafe for TailwindDivide
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more