pub struct WindowPositionProvider { /* private fields */ }Implementations§
Source§impl WindowPositionProvider
impl WindowPositionProvider
pub fn new<F>(f: F) -> WindowPositionProvider
pub fn get_position( &self, s: &WindowGeometryProviderScope<'_>, sz: Size, ) -> Vec2
pub fn default() -> WindowPositionProvider
pub fn current() -> WindowPositionProvider
pub fn centered_on_screen() -> WindowPositionProvider
pub fn centered_in_screen_bounds(offset: Vec2) -> WindowPositionProvider
pub fn centered_in_screen() -> WindowPositionProvider
pub fn aligned_to_screen_available( ax: f32, ay: f32, offset: Vec2, ) -> WindowPositionProvider
pub fn absolute(pos: Vec2) -> WindowPositionProvider
pub fn absolute_xy(x: f32, y: f32) -> WindowPositionProvider
pub fn aligned_to_parent( anchor_x: f32, anchor_y: f32, align_x: f32, align_y: f32, offset: Vec2, exclude_parent_insets: bool, ) -> WindowPositionProvider
pub fn centered_in_parent(offset: Vec2) -> WindowPositionProvider
Trait Implementations§
Source§impl Clone for WindowPositionProvider
impl Clone for WindowPositionProvider
Source§fn clone(&self) -> WindowPositionProvider
fn clone(&self) -> WindowPositionProvider
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for WindowPositionProvider
impl Default for WindowPositionProvider
Source§fn default() -> WindowPositionProvider
fn default() -> WindowPositionProvider
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for WindowPositionProvider
impl !Send for WindowPositionProvider
impl !Sync for WindowPositionProvider
impl !UnwindSafe for WindowPositionProvider
impl Freeze for WindowPositionProvider
impl Unpin for WindowPositionProvider
impl UnsafeUnpin for WindowPositionProvider
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.