#[repr(C)]pub struct ClapGuiResizeHints {
pub can_resize_horizontally: bool,
pub can_resize_vertically: bool,
pub preserve_aspect_ratio: bool,
pub aspect_ratio_width: u32,
pub aspect_ratio_height: u32,
}Fields§
§can_resize_horizontally: bool§can_resize_vertically: bool§preserve_aspect_ratio: bool§aspect_ratio_width: u32§aspect_ratio_height: u32Auto Trait Implementations§
impl Freeze for ClapGuiResizeHints
impl RefUnwindSafe for ClapGuiResizeHints
impl Send for ClapGuiResizeHints
impl Sync for ClapGuiResizeHints
impl Unpin for ClapGuiResizeHints
impl UnsafeUnpin for ClapGuiResizeHints
impl UnwindSafe for ClapGuiResizeHints
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