pub enum SassBinaryOperatorKind {
Show 13 variants
Multiply,
Division,
Modulo,
Plus,
Minus,
GreaterThan,
GreaterThanOrEqual,
LessThan,
LessThanOrEqual,
EqualsEquals,
ExclamationEquals,
And,
Or,
}Variants§
Multiply
Division
Modulo
Plus
Minus
GreaterThan
GreaterThanOrEqual
LessThan
LessThanOrEqual
EqualsEquals
ExclamationEquals
And
Or
Trait Implementations§
Source§impl Clone for SassBinaryOperatorKind
impl Clone for SassBinaryOperatorKind
Source§fn clone(&self) -> SassBinaryOperatorKind
fn clone(&self) -> SassBinaryOperatorKind
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 SassBinaryOperatorKind
impl Debug for SassBinaryOperatorKind
Source§impl PartialEq for SassBinaryOperatorKind
impl PartialEq for SassBinaryOperatorKind
Source§fn eq(&self, other: &SassBinaryOperatorKind) -> bool
fn eq(&self, other: &SassBinaryOperatorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SassBinaryOperatorKind
Auto Trait Implementations§
impl Freeze for SassBinaryOperatorKind
impl RefUnwindSafe for SassBinaryOperatorKind
impl Send for SassBinaryOperatorKind
impl Sync for SassBinaryOperatorKind
impl Unpin for SassBinaryOperatorKind
impl UnsafeUnpin for SassBinaryOperatorKind
impl UnwindSafe for SassBinaryOperatorKind
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