pub struct XyzOptions {
pub csize: i32,
pub dsize: i32,
pub esize: i32,
}
Expand description
Options for xyz operation
Fields§
§csize: i32
csize: i32
-> Size of third dimension
min: 1, max: 10000000, default: 1
dsize: i32
dsize: i32
-> Size of fourth dimension
min: 1, max: 10000000, default: 1
esize: i32
esize: i32
-> Size of fifth dimension
min: 1, max: 10000000, default: 1
Trait Implementations§
Source§impl Clone for XyzOptions
impl Clone for XyzOptions
Source§fn clone(&self) -> XyzOptions
fn clone(&self) -> XyzOptions
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 XyzOptions
impl Debug for XyzOptions
Auto Trait Implementations§
impl Freeze for XyzOptions
impl RefUnwindSafe for XyzOptions
impl Send for XyzOptions
impl Sync for XyzOptions
impl Unpin for XyzOptions
impl UnwindSafe for XyzOptions
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