pub struct Window<'a> { /* private fields */ }Implementations§
Source§impl<'a> Window<'a>
impl<'a> Window<'a>
pub fn get_title(&self) -> &&'a str
pub fn set_title(&self, value: &&'a str)
pub fn get_width(&self) -> &i32
pub fn set_width(&self, value: &i32)
pub fn get_height(&self) -> &i32
pub fn set_height(&self, value: &i32)
pub fn get_left(&self) -> &i32
pub fn set_left(&self, value: &i32)
pub fn get_top(&self) -> &i32
pub fn set_top(&self, value: &i32)
pub fn get_visible(&self) -> &bool
pub fn set_visible(&self, value: &bool)
pub fn get_enabled(&self) -> &bool
pub fn set_enabled(&self, value: &bool)
Trait Implementations§
Auto Trait Implementations§
impl<'a> !Freeze for Window<'a>
impl<'a> !RefUnwindSafe for Window<'a>
impl<'a> !Send for Window<'a>
impl<'a> !Sync for Window<'a>
impl<'a> Unpin for Window<'a>
impl<'a> !UnwindSafe for Window<'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