pub enum LoggingBehavior {
Normal,
Deferred,
Disabled,
}Variants§
Normal
Normal logging (default)
Deferred
No per-action logging, single chain log
Disabled
Disable logging completely for this execution
Trait Implementations§
Source§impl Clone for LoggingBehavior
impl Clone for LoggingBehavior
Source§fn clone(&self) -> LoggingBehavior
fn clone(&self) -> LoggingBehavior
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 moreAuto Trait Implementations§
impl Freeze for LoggingBehavior
impl RefUnwindSafe for LoggingBehavior
impl Send for LoggingBehavior
impl Sync for LoggingBehavior
impl Unpin for LoggingBehavior
impl UnwindSafe for LoggingBehavior
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