pub struct ROIStatParams {Show 20 fields
pub reset_all: usize,
pub ts_control: usize,
pub ts_num_points: usize,
pub ts_current_point: usize,
pub ts_acquiring: usize,
pub use_: usize,
pub name: usize,
pub reset: usize,
pub bgd_width: usize,
pub dim0_min: usize,
pub dim1_min: usize,
pub dim0_size: usize,
pub dim1_size: usize,
pub dim0_max_size: usize,
pub dim1_max_size: usize,
pub min_value: usize,
pub max_value: usize,
pub mean_value: usize,
pub total: usize,
pub net: usize,
}Expand description
Parameter indices for NDROIStat plugin-specific params.
Per-ROI params use a single index and are differentiated by asyn addr (0..N).
Fields§
§reset_all: usize§ts_control: usize§ts_num_points: usize§ts_current_point: usize§ts_acquiring: usize§use_: usize§name: usize§reset: usize§bgd_width: usize§dim0_min: usize§dim1_min: usize§dim0_size: usize§dim1_size: usize§dim0_max_size: usize§dim1_max_size: usize§min_value: usize§max_value: usize§mean_value: usize§total: usize§net: usizeTrait Implementations§
Source§impl Clone for ROIStatParams
impl Clone for ROIStatParams
Source§fn clone(&self) -> ROIStatParams
fn clone(&self) -> ROIStatParams
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 Default for ROIStatParams
impl Default for ROIStatParams
Source§fn default() -> ROIStatParams
fn default() -> ROIStatParams
Returns the “default value” for a type. Read more
impl Copy for ROIStatParams
Auto Trait Implementations§
impl Freeze for ROIStatParams
impl RefUnwindSafe for ROIStatParams
impl Send for ROIStatParams
impl Sync for ROIStatParams
impl Unpin for ROIStatParams
impl UnsafeUnpin for ROIStatParams
impl UnwindSafe for ROIStatParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more