pub struct KeltnerChannelOutput {
pub average: f64,
pub upper: f64,
pub lower: f64,
}Fields§
§average: f64§upper: f64§lower: f64Trait Implementations§
Source§impl Clone for KeltnerChannelOutput
impl Clone for KeltnerChannelOutput
Source§fn clone(&self) -> KeltnerChannelOutput
fn clone(&self) -> KeltnerChannelOutput
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 KeltnerChannelOutput
impl Debug for KeltnerChannelOutput
Source§impl PartialEq for KeltnerChannelOutput
impl PartialEq for KeltnerChannelOutput
impl StructuralPartialEq for KeltnerChannelOutput
Auto Trait Implementations§
impl Freeze for KeltnerChannelOutput
impl RefUnwindSafe for KeltnerChannelOutput
impl Send for KeltnerChannelOutput
impl Sync for KeltnerChannelOutput
impl Unpin for KeltnerChannelOutput
impl UnwindSafe for KeltnerChannelOutput
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