pub enum WindowOutput {
OwnValue,
XorValue,
}Expand description
Window output mode for window comparisons.
Variants§
OwnValue
Output is the comparator’s own value.
XorValue
Output is XOR of both comparators in the pair (for window detection).
Trait Implementations§
Source§impl Clone for WindowOutput
impl Clone for WindowOutput
Source§fn clone(&self) -> WindowOutput
fn clone(&self) -> WindowOutput
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 WindowOutput
impl Debug for WindowOutput
Source§impl Default for WindowOutput
impl Default for WindowOutput
Source§fn default() -> WindowOutput
fn default() -> WindowOutput
Returns the “default value” for a type. Read more
Source§impl Format for WindowOutput
impl Format for WindowOutput
Source§impl PartialEq for WindowOutput
impl PartialEq for WindowOutput
impl Copy for WindowOutput
impl Eq for WindowOutput
impl StructuralPartialEq for WindowOutput
Auto Trait Implementations§
impl Freeze for WindowOutput
impl RefUnwindSafe for WindowOutput
impl Send for WindowOutput
impl Sync for WindowOutput
impl Unpin for WindowOutput
impl UnwindSafe for WindowOutput
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