Struct nih_plug_vizia::widgets::ResizeHandle
source · pub struct ResizeHandle { /* private fields */ }
Expand description
A resize handle placed at the bottom right of the window that lets you resize the window.
Implementations§
source§impl ResizeHandle
impl ResizeHandle
Trait Implementations§
source§impl View for ResizeHandle
impl View for ResizeHandle
source§fn element(&self) -> Option<&'static str>
fn element(&self) -> Option<&'static str>
The name of the view. This is used in css: to style every single one of a given view, you
specify the element name.
fn event(&mut self, cx: &mut EventContext<'_>, event: &mut Event)
fn draw(&self, cx: &mut DrawContext<'_>, canvas: &mut Canvas)
fn build<F>(self, cx: &mut Context, content: F) -> Handle<'_, Self>where F: FnOnce(&mut Context),
Auto Trait Implementations§
impl RefUnwindSafe for ResizeHandle
impl Send for ResizeHandle
impl Sync for ResizeHandle
impl Unpin for ResizeHandle
impl UnwindSafe for ResizeHandle
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