pub enum NotificationLevel {
Silent,
Standard,
Debug,
}Expand description
The amount of feedback information that is to be generated.
Variants§
Silent
No feedback generated by base engine. Note that game modifiers called may choose to generate feedback messages themselves, which will not again be discarded once received by the base game engine.
Standard
Base level of feedback about in-game events.
Debug
Highest level of feedback, which includes emitting every internal game event processed
Trait Implementations§
Source§impl Clone for NotificationLevel
impl Clone for NotificationLevel
Source§fn clone(&self) -> NotificationLevel
fn clone(&self) -> NotificationLevel
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 NotificationLevel
impl Debug for NotificationLevel
Source§impl Hash for NotificationLevel
impl Hash for NotificationLevel
Source§impl Ord for NotificationLevel
impl Ord for NotificationLevel
Source§fn cmp(&self, other: &NotificationLevel) -> Ordering
fn cmp(&self, other: &NotificationLevel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NotificationLevel
impl PartialEq for NotificationLevel
Source§impl PartialOrd for NotificationLevel
impl PartialOrd for NotificationLevel
impl Copy for NotificationLevel
impl Eq for NotificationLevel
impl StructuralPartialEq for NotificationLevel
Auto Trait Implementations§
impl Freeze for NotificationLevel
impl RefUnwindSafe for NotificationLevel
impl Send for NotificationLevel
impl Sync for NotificationLevel
impl Unpin for NotificationLevel
impl UnsafeUnpin for NotificationLevel
impl UnwindSafe for NotificationLevel
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