Enum hapi_rs::geometry::StatusVerbosity
source · #[repr(i32)]
#[non_exhaustive]
pub enum StatusVerbosity {
Statusverbosity0,
Statusverbosity1,
Statusverbosity2,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
source§impl StatusVerbosity
impl StatusVerbosity
pub const All: StatusVerbosity = StatusVerbosity::Statusverbosity2
source§impl StatusVerbosity
impl StatusVerbosity
pub const Errors: StatusVerbosity = StatusVerbosity::Statusverbosity0
source§impl StatusVerbosity
impl StatusVerbosity
pub const Warnings: StatusVerbosity = StatusVerbosity::Statusverbosity1
source§impl StatusVerbosity
impl StatusVerbosity
pub const Messages: StatusVerbosity = StatusVerbosity::Statusverbosity2
Trait Implementations§
source§impl Clone for StatusVerbosity
impl Clone for StatusVerbosity
source§fn clone(&self) -> StatusVerbosity
fn clone(&self) -> StatusVerbosity
Returns a copy 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 StatusVerbosity
impl Debug for StatusVerbosity
source§impl Hash for StatusVerbosity
impl Hash for StatusVerbosity
source§impl PartialEq<StatusVerbosity> for StatusVerbosity
impl PartialEq<StatusVerbosity> for StatusVerbosity
source§fn eq(&self, other: &StatusVerbosity) -> bool
fn eq(&self, other: &StatusVerbosity) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.