Enum bedrock::CompareOp [] [src]

#[repr(C)]
pub enum CompareOp { Never, Less, Equal, LessOrEqual, Greater, NotEqual, GreaterOrEqual, Always, }

Stencil comparison function

Variants

The test never passes

The test passes when Ref < Stencil

The test passes when Ref == Stencil

The test passes when Ref <= Stencil

The test passes when Ref > Stencil

The test passes when Ref != Stencil

The test passes when Ref >= Stencil

The test always passes

Trait Implementations

impl Debug for CompareOp
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CompareOp
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for CompareOp
[src]

impl PartialEq for CompareOp
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for CompareOp
[src]

Auto Trait Implementations

impl Send for CompareOp

impl Sync for CompareOp