pub enum UnaryOperator {
LogicalNegation,
Negation,
BitwiseComplement,
AddressOf,
Indirection,
}Variants§
Implementations§
Source§impl UnaryOperator
impl UnaryOperator
Sourcepub const fn is_logical_negation(&self) -> bool
pub const fn is_logical_negation(&self) -> bool
Returns true if this value is of type LogicalNegation. Returns false otherwise
Sourcepub const fn is_negation(&self) -> bool
pub const fn is_negation(&self) -> bool
Returns true if this value is of type Negation. Returns false otherwise
Sourcepub const fn is_bitwise_complement(&self) -> bool
pub const fn is_bitwise_complement(&self) -> bool
Returns true if this value is of type BitwiseComplement. Returns false otherwise
Sourcepub const fn is_address_of(&self) -> bool
pub const fn is_address_of(&self) -> bool
Returns true if this value is of type AddressOf. Returns false otherwise
Sourcepub const fn is_indirection(&self) -> bool
pub const fn is_indirection(&self) -> bool
Returns true if this value is of type Indirection. Returns false otherwise
Trait Implementations§
Source§impl Clone for UnaryOperator
impl Clone for UnaryOperator
Source§fn clone(&self) -> UnaryOperator
fn clone(&self) -> UnaryOperator
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 UnaryOperator
impl Debug for UnaryOperator
Source§impl Display for UnaryOperator
impl Display for UnaryOperator
Source§impl PartialEq for UnaryOperator
impl PartialEq for UnaryOperator
impl Copy for UnaryOperator
impl Eq for UnaryOperator
impl StructuralPartialEq for UnaryOperator
Auto Trait Implementations§
impl Freeze for UnaryOperator
impl RefUnwindSafe for UnaryOperator
impl Send for UnaryOperator
impl Sync for UnaryOperator
impl Unpin for UnaryOperator
impl UnwindSafe for UnaryOperator
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