pub struct LogmatOptions {
pub separable: bool,
pub precision: Precision,
}
Expand description
Options for logmat operation
Fields§
§separable: bool
separable: bool
-> Generate separable Gaussian
default: false
precision: Precision
precision: Precision
-> Generate with this precision
Integer
-> VIPS_PRECISION_INTEGER = 0 [DEFAULT]
Float
-> VIPS_PRECISION_FLOAT = 1
Approximate
-> VIPS_PRECISION_APPROXIMATE = 2
Last
-> VIPS_PRECISION_LAST = 3
Trait Implementations§
Source§impl Clone for LogmatOptions
impl Clone for LogmatOptions
Source§fn clone(&self) -> LogmatOptions
fn clone(&self) -> LogmatOptions
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 LogmatOptions
impl Debug for LogmatOptions
Auto Trait Implementations§
impl Freeze for LogmatOptions
impl RefUnwindSafe for LogmatOptions
impl Send for LogmatOptions
impl Sync for LogmatOptions
impl Unpin for LogmatOptions
impl UnwindSafe for LogmatOptions
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