pub struct AnimationsConfig {
pub enabled: bool,
pub smooth_resize: TimedAnimationConfig,
pub maximize: TimedAnimationConfig,
pub window_close: WindowCloseAnimationConfig,
pub window_open: TimedAnimationConfig,
pub tile: TimedAnimationConfig,
pub stack: TimedAnimationConfig,
pub raise: RaiseAnimationConfig,
}Fields§
§enabled: bool§smooth_resize: TimedAnimationConfig§maximize: TimedAnimationConfig§window_close: WindowCloseAnimationConfig§window_open: TimedAnimationConfig§tile: TimedAnimationConfig§stack: TimedAnimationConfig§raise: RaiseAnimationConfigTrait Implementations§
Source§impl Clone for AnimationsConfig
impl Clone for AnimationsConfig
Source§fn clone(&self) -> AnimationsConfig
fn clone(&self) -> AnimationsConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AnimationsConfig
Source§impl Debug for AnimationsConfig
impl Debug for AnimationsConfig
Source§impl Default for AnimationsConfig
impl Default for AnimationsConfig
Source§impl PartialEq for AnimationsConfig
impl PartialEq for AnimationsConfig
Source§fn eq(&self, other: &AnimationsConfig) -> bool
fn eq(&self, other: &AnimationsConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnimationsConfig
Auto Trait Implementations§
impl Freeze for AnimationsConfig
impl RefUnwindSafe for AnimationsConfig
impl Send for AnimationsConfig
impl Sync for AnimationsConfig
impl Unpin for AnimationsConfig
impl UnsafeUnpin for AnimationsConfig
impl UnwindSafe for AnimationsConfig
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