#[repr(C)]pub struct miracle_placement_t {
pub strategy: u32,
pub freestyle_placement: miracle_freestyle_placement_t,
pub tiled_placement: miracle_tiled_placement_t,
}Fields§
§strategy: u32The placement strategy for this window.
This is miracle_window_management_strategy_t.
Defaults to the #miracle_window_management_strategy_system.
freestyle_placement: miracle_freestyle_placement_tThe freestyle placement strategy.
This is only honored if #strategy is #miracle_window_management_strategy_freestyle.
tiled_placement: miracle_tiled_placement_tThe titled placement strategy.
This is only honored if #strategy is #miracle_window_management_strategy_tiled.
Trait Implementations§
Source§impl Clone for miracle_placement_t
impl Clone for miracle_placement_t
Source§fn clone(&self) -> miracle_placement_t
fn clone(&self) -> miracle_placement_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for miracle_placement_t
impl Debug for miracle_placement_t
Source§impl Default for miracle_placement_t
impl Default for miracle_placement_t
Source§impl From<Placement> for miracle_placement_t
impl From<Placement> for miracle_placement_t
impl Copy for miracle_placement_t
Auto Trait Implementations§
impl Freeze for miracle_placement_t
impl RefUnwindSafe for miracle_placement_t
impl Send for miracle_placement_t
impl Sync for miracle_placement_t
impl Unpin for miracle_placement_t
impl UnsafeUnpin for miracle_placement_t
impl UnwindSafe for miracle_placement_t
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