pub enum VirtualKeyboardEvent {
    WillShow {
        time: f64,
        height: f64,
        duration: f64,
        ease: Ease,
    },
    WillHide {
        time: f64,
        height: f64,
        duration: f64,
        ease: Ease,
    },
    DidShow {
        time: f64,
        height: f64,
    },
    DidHide {
        time: f64,
    },
}Variants§
Trait Implementations§
Source§impl Clone for VirtualKeyboardEvent
 
impl Clone for VirtualKeyboardEvent
Source§fn clone(&self) -> VirtualKeyboardEvent
 
fn clone(&self) -> VirtualKeyboardEvent
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 moreAuto Trait Implementations§
impl Freeze for VirtualKeyboardEvent
impl RefUnwindSafe for VirtualKeyboardEvent
impl Send for VirtualKeyboardEvent
impl Sync for VirtualKeyboardEvent
impl Unpin for VirtualKeyboardEvent
impl UnwindSafe for VirtualKeyboardEvent
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