pub struct Stepwise {
pub min_width: u32,
pub max_width: u32,
pub step_width: u32,
pub min_height: u32,
pub max_height: u32,
pub step_height: u32,
}
Fields§
§min_width: u32
Minimum frame width (in pixels).
max_width: u32
Maximum frame width (in pixels).
step_width: u32
Frame width step size (in pixels).
min_height: u32
Minimum frame height (in pixels).
max_height: u32
Maximum frame height (in pixels).
step_height: u32
Frame height step size (in pixels).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stepwise
impl RefUnwindSafe for Stepwise
impl Send for Stepwise
impl Sync for Stepwise
impl Unpin for Stepwise
impl UnwindSafe for Stepwise
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