pub struct ReactiveProcessorInfo {
pub processor_name: String,
pub options: ReactiveProcessorOptions,
pub enabled: bool,
pub running: bool,
pub updated_at_micros: u64,
}Fields§
§processor_name: String§options: ReactiveProcessorOptions§enabled: bool§running: bool§updated_at_micros: u64Trait Implementations§
Source§impl Clone for ReactiveProcessorInfo
impl Clone for ReactiveProcessorInfo
Source§fn clone(&self) -> ReactiveProcessorInfo
fn clone(&self) -> ReactiveProcessorInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReactiveProcessorInfo
impl Debug for ReactiveProcessorInfo
Source§impl PartialEq for ReactiveProcessorInfo
impl PartialEq for ReactiveProcessorInfo
Source§fn eq(&self, other: &ReactiveProcessorInfo) -> bool
fn eq(&self, other: &ReactiveProcessorInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReactiveProcessorInfo
impl StructuralPartialEq for ReactiveProcessorInfo
Auto Trait Implementations§
impl Freeze for ReactiveProcessorInfo
impl RefUnwindSafe for ReactiveProcessorInfo
impl Send for ReactiveProcessorInfo
impl Sync for ReactiveProcessorInfo
impl Unpin for ReactiveProcessorInfo
impl UnsafeUnpin for ReactiveProcessorInfo
impl UnwindSafe for ReactiveProcessorInfo
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