pub struct WrapOptions {
pub x: i32,
pub y: i32,
}
Expand description
Options for wrap operation
Fields§
§x: i32
x: i32
-> Left edge of input in output
min: -10000000, max: 10000000, default: 0
y: i32
y: i32
-> Top edge of input in output
min: -10000000, max: 10000000, default: 0
Trait Implementations§
Source§impl Clone for WrapOptions
impl Clone for WrapOptions
Source§fn clone(&self) -> WrapOptions
fn clone(&self) -> WrapOptions
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 WrapOptions
impl Debug for WrapOptions
Auto Trait Implementations§
impl Freeze for WrapOptions
impl RefUnwindSafe for WrapOptions
impl Send for WrapOptions
impl Sync for WrapOptions
impl Unpin for WrapOptions
impl UnwindSafe for WrapOptions
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