Enum LogOp Copy item path Source pub enum LogOp {
And,
Or,
Coalesce,
}Expand description Logical operators are typically used with Boolean (logical) values; when they are, they return a Boolean value.
However, the && and || operators actually return the value of one of the specified operands,
so if these operators are used with non-Boolean values, they may return a non-Boolean value.
More information:
The logical AND operator returns the value of the first operand if it can be coerced into false;
otherwise, it returns the second operand.
Syntax: x && y
More information:
The logical OR operator returns the value the first operand if it can be coerced into true;
otherwise, it returns the second operand.
Syntax: x || y
More information:
The nullish coalescing operator is a logical operator that returns the second operand
when its first operand is null or undefined, and otherwise returns its first operand.
Syntax: x ?? y
More information:
Performs copy-assignment from
source.
Read more Formats the value using the given formatter.
Read more Formats the value using the given formatter.
Read more Converts to this type from the input type.
Tests for self and other values to be equal, and is used by ==.
Tests for !=. The default implementation is almost always sufficient,
and should not be overridden without very good reason.
Marks all contained Gcs.
Increments the root-count of all contained Gcs.
Decrements the root-count of all contained Gcs.
Runs Finalize::finalize() on this object and all
contained subobjects
Immutably borrows from an owned value.
Read more Mutably borrows from an owned value.
Read more 🔬 This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from
self to
dest.
Read more Returns the argument unchanged.
Calls U::from(self).
That is, this conversion is whatever the implementation of
From <T> for U chooses to do.
Convert the Rust type which implements NativeObject to a &dyn Any.
Convert the Rust type which implements NativeObject to a &mut dyn Any.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning.
Read more Uses borrowed data to replace owned data, usually by cloning.
Read more Converts the given value to a
String.
Read more The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.