pub struct ScaleOptions {
pub exp: f64,
pub log: bool,
}
Expand description
Options for scale operation
Fields§
§exp: f64
exp: f64
-> Exponent for log scale
min: 0.00001, max: 10000, default: 0.25
log: bool
log: bool
-> Log scale
default: false
Trait Implementations§
Source§impl Clone for ScaleOptions
impl Clone for ScaleOptions
Source§fn clone(&self) -> ScaleOptions
fn clone(&self) -> ScaleOptions
Returns a copy 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 ScaleOptions
impl Debug for ScaleOptions
Auto Trait Implementations§
impl Freeze for ScaleOptions
impl RefUnwindSafe for ScaleOptions
impl Send for ScaleOptions
impl Sync for ScaleOptions
impl Unpin for ScaleOptions
impl UnwindSafe for ScaleOptions
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