pub struct ReactiveLogOptions<T: Clone + Send + Sync + 'static> {
pub name: String,
pub max_size: Option<usize>,
pub backend: Option<Box<dyn LogBackend<T>>>,
pub mutation_log: bool,
}Expand description
Options for constructing a ReactiveLog.
Fields§
§name: String§max_size: Option<usize>§backend: Option<Box<dyn LogBackend<T>>>§mutation_log: boolTrait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ReactiveLogOptions<T>
impl<T> !RefUnwindSafe for ReactiveLogOptions<T>
impl<T> Send for ReactiveLogOptions<T>
impl<T> Sync for ReactiveLogOptions<T>
impl<T> Unpin for ReactiveLogOptions<T>
impl<T> UnsafeUnpin for ReactiveLogOptions<T>
impl<T> !UnwindSafe for ReactiveLogOptions<T>
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