#[repr(C)]pub enum EventLoggingState {
DISABLED,
ENABELD {
write_buffer: Arc<RwLock<BufWriter<File>>>,
millis_start_unix: Arc<u128>,
},
}Variants§
Trait Implementations§
Source§impl Clone for EventLoggingState
impl Clone for EventLoggingState
Source§fn clone(&self) -> EventLoggingState
fn clone(&self) -> EventLoggingState
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 EventLoggingState
impl Debug for EventLoggingState
Source§impl Default for EventLoggingState
impl Default for EventLoggingState
Source§fn default() -> EventLoggingState
fn default() -> EventLoggingState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EventLoggingState
impl !RefUnwindSafe for EventLoggingState
impl Send for EventLoggingState
impl Sync for EventLoggingState
impl Unpin for EventLoggingState
impl !UnwindSafe for EventLoggingState
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