pub struct SineOptions {
pub uchar: bool,
pub hfreq: f64,
pub vfreq: f64,
}
Expand description
Options for sines operation
Fields§
§uchar: bool
uchar: bool
-> Output an unsigned char image
default: false
hfreq: f64
hfreq: f64
-> Horizontal spatial frequency
min: 0, max: 10000, default: 0.5
vfreq: f64
vfreq: f64
-> Vertical spatial frequency
min: 0, max: 10000, default: 0.5
Trait Implementations§
Source§impl Clone for SineOptions
impl Clone for SineOptions
Source§fn clone(&self) -> SineOptions
fn clone(&self) -> SineOptions
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 SineOptions
impl Debug for SineOptions
Auto Trait Implementations§
impl Freeze for SineOptions
impl RefUnwindSafe for SineOptions
impl Send for SineOptions
impl Sync for SineOptions
impl Unpin for SineOptions
impl UnwindSafe for SineOptions
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