pub struct ProfileData {
pub pixels: i32,
pub mean_intensity: f32,
pub standard_deviation_intensity: f32,
}Fields§
§pixels: i32§mean_intensity: f32§standard_deviation_intensity: f32Trait Implementations§
Source§impl Clone for ProfileData
impl Clone for ProfileData
Source§fn clone(&self) -> ProfileData
fn clone(&self) -> ProfileData
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 moreimpl Copy for ProfileData
Source§impl Debug for ProfileData
impl Debug for ProfileData
Source§impl Default for ProfileData
impl Default for ProfileData
Source§fn default() -> ProfileData
fn default() -> ProfileData
Returns the “default value” for a type. Read more
Source§impl From<NppiProfileData> for ProfileData
impl From<NppiProfileData> for ProfileData
Source§fn from(value: NppiProfileData) -> Self
fn from(value: NppiProfileData) -> Self
Converts to this type from the input type.
Source§impl From<ProfileData> for NppiProfileData
impl From<ProfileData> for NppiProfileData
Source§fn from(value: ProfileData) -> Self
fn from(value: ProfileData) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ProfileData
impl PartialEq for ProfileData
Source§fn eq(&self, other: &ProfileData) -> bool
fn eq(&self, other: &ProfileData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ProfileData
impl PartialOrd for ProfileData
impl StructuralPartialEq for ProfileData
Auto Trait Implementations§
impl Freeze for ProfileData
impl RefUnwindSafe for ProfileData
impl Send for ProfileData
impl Sync for ProfileData
impl Unpin for ProfileData
impl UnsafeUnpin for ProfileData
impl UnwindSafe for ProfileData
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