#[repr(C)]pub struct ClapHostGui {
pub resize_hints_changed: Option<unsafe extern "C" fn(*const ClapHost)>,
pub request_resize: Option<unsafe extern "C" fn(*const ClapHost, u32, u32) -> bool>,
pub request_show: Option<unsafe extern "C" fn(*const ClapHost) -> bool>,
pub request_hide: Option<unsafe extern "C" fn(*const ClapHost) -> bool>,
pub closed: Option<unsafe extern "C" fn(*const ClapHost, bool)>,
}Fields§
§resize_hints_changed: Option<unsafe extern "C" fn(*const ClapHost)>§request_resize: Option<unsafe extern "C" fn(*const ClapHost, u32, u32) -> bool>§request_show: Option<unsafe extern "C" fn(*const ClapHost) -> bool>§request_hide: Option<unsafe extern "C" fn(*const ClapHost) -> bool>§closed: Option<unsafe extern "C" fn(*const ClapHost, bool)>Auto Trait Implementations§
impl Freeze for ClapHostGui
impl RefUnwindSafe for ClapHostGui
impl Send for ClapHostGui
impl Sync for ClapHostGui
impl Unpin for ClapHostGui
impl UnsafeUnpin for ClapHostGui
impl UnwindSafe for ClapHostGui
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