pub struct RawWindow<'a> {
pub gtk_window: &'a ApplicationWindow,
pub default_vbox: Option<&'a Box>,
pub _marker: &'a PhantomData<()>,
}
Expand description
A raw window type that contains fields to access the HWND on Windows, gtk::ApplicationWindow on Linux and NSView on macOS.
Fields§
§gtk_window: &'a ApplicationWindow
§default_vbox: Option<&'a Box>
§_marker: &'a PhantomData<()>
Auto Trait Implementations§
impl<'a> Freeze for RawWindow<'a>
impl<'a> RefUnwindSafe for RawWindow<'a>
impl<'a> !Send for RawWindow<'a>
impl<'a> !Sync for RawWindow<'a>
impl<'a> Unpin for RawWindow<'a>
impl<'a> UnwindSafe for RawWindow<'a>
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