pub struct ReactiveLogOptions {
pub name: Option<String>,
pub graph: Option<Graph>,
pub max_size: Option<usize>,
}Expand description
ReactiveLogOptions data container.
Fields§
§name: Option<String>name field for name.
graph: Option<Graph>graph field for graph.
max_size: Option<usize>max_size field for max size.
Implementations§
Trait Implementations§
Source§impl Clone for ReactiveLogOptions
impl Clone for ReactiveLogOptions
Source§fn clone(&self) -> ReactiveLogOptions
fn clone(&self) -> ReactiveLogOptions
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 ReactiveLogOptions
impl Debug for ReactiveLogOptions
Source§impl Default for ReactiveLogOptions
impl Default for ReactiveLogOptions
Source§fn default() -> ReactiveLogOptions
fn default() -> ReactiveLogOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReactiveLogOptions
impl !RefUnwindSafe for ReactiveLogOptions
impl !Send for ReactiveLogOptions
impl !Sync for ReactiveLogOptions
impl Unpin for ReactiveLogOptions
impl UnsafeUnpin for ReactiveLogOptions
impl !UnwindSafe for ReactiveLogOptions
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