pub struct FrameImplementation<ID> {
pub configure: fn(evqh: &mut EventQueueHandle, idata: &mut ID, cfg: Configure, newsize: Option<(i32, i32)>),
pub close: fn(evqh: &mut EventQueueHandle, idata: &mut ID),
pub refresh: fn(evqh: &mut EventQueueHandle, idata: &mut ID),
}
Expand description
For handling events that occur to a Frame.
Fields§
§configure: fn(evqh: &mut EventQueueHandle, idata: &mut ID, cfg: Configure, newsize: Option<(i32, i32)>)
Called whenever the Frame has been resized.
Note: if you’ve not set a minimum size, width
and height
will not always be
positive values. Values can be negative if a user attempts to resize the window past
the left or top borders.
close: fn(evqh: &mut EventQueueHandle, idata: &mut ID)
Called when the Frame is closed.
refresh: fn(evqh: &mut EventQueueHandle, idata: &mut ID)
Called when the Frame wants to be refreshed
Trait Implementations§
Source§impl<ID> Clone for FrameImplementation<ID>
impl<ID> Clone for FrameImplementation<ID>
Source§fn clone(&self) -> FrameImplementation<ID>
fn clone(&self) -> FrameImplementation<ID>
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 moreimpl<ID> Copy for FrameImplementation<ID>
Auto Trait Implementations§
impl<ID> Freeze for FrameImplementation<ID>
impl<ID> RefUnwindSafe for FrameImplementation<ID>
impl<ID> Send for FrameImplementation<ID>
impl<ID> Sync for FrameImplementation<ID>
impl<ID> Unpin for FrameImplementation<ID>
impl<ID> UnwindSafe for FrameImplementation<ID>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)