Skip to main content

BspNode

Enum BspNode 

Source
pub enum BspNode<Id: Copy + Eq + Ord> {
    Leaf(Id),
    Split {
        orientation: Orientation,
        left: Box<BspNode<Id>>,
        right: Box<BspNode<Id>>,
        ratio: Ratio,
    },
}
Expand description

A strict binary (BSP) split tree.

Each Split node divides its area into two children using an integer ratio. Remainder isolation guarantees no dead zones: sum(child widths) == parent width.

Variants§

§

Leaf(Id)

§

Split

Fields

§orientation: Orientation
§left: Box<BspNode<Id>>
§right: Box<BspNode<Id>>
§ratio: Ratio

Implementations§

Source§

impl<Id: Copy + Eq + Ord> BspNode<Id>

Source

pub fn leaf(id: Id) -> Self

Source

pub fn is_leaf(&self) -> bool

Source

pub fn unwrap_leaf(&self) -> Option<Id>

Source

pub fn subtree_any(&self, predicate: &mut impl FnMut(Id) -> bool) -> bool

Source

pub fn all_leaf_ids(&self) -> Vec<Id>

Source

pub fn layout(&self, area: LayoutRect) -> Vec<(Id, LayoutRect)>

Source

pub fn insert_leaf( &mut self, target: Id, insert: Id, position: InsertPosition, area: LayoutRect, constraints: &SizeConstraints, ) -> Result<(), LayoutError>

Source

pub fn apply_drag( &mut self, area: LayoutRect, path: &[bool], orientation: Orientation, delta: i16, constraints: &SizeConstraints, ) -> bool

Source

pub fn remove_leaf(&mut self, id: Id) -> Result<(), LayoutError>

Source

pub fn find_path(&self, target: Id) -> Option<Vec<bool>>

Trait Implementations§

Source§

impl<Id: Clone + Copy + Eq + Ord> Clone for BspNode<Id>

Source§

fn clone(&self) -> BspNode<Id>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Id: Debug + Copy + Eq + Ord> Debug for BspNode<Id>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Id: Copy + Eq + Ord> From<BspNode<Id>> for LayoutNode<Id>

Source§

fn from(bsp: BspNode<Id>) -> Self

Converts to this type from the input type.
Source§

impl<Id: Copy + Eq + Ord> LayoutEngine<Id> for BspNode<Id>

Source§

fn layout(&self, area: LayoutRect) -> Vec<(Id, LayoutRect)>

Source§

fn insert_leaf( &mut self, target: Id, insert: Id, position: InsertPosition, area: LayoutRect, constraints: &SizeConstraints, ) -> Result<(), LayoutError>

Source§

fn remove_leaf(&mut self, id: Id) -> Result<(), LayoutError>

Source§

fn all_leaf_ids(&self) -> Vec<Id>

Source§

fn subtree_any(&self, predicate: &mut impl FnMut(Id) -> bool) -> bool

Source§

fn apply_drag( &mut self, area: LayoutRect, path: &[usize], _index: usize, orientation: Orientation, delta: i16, constraints: &SizeConstraints, ) -> bool

Auto Trait Implementations§

§

impl<Id> Freeze for BspNode<Id>
where Id: Freeze,

§

impl<Id> RefUnwindSafe for BspNode<Id>
where Id: RefUnwindSafe,

§

impl<Id> Send for BspNode<Id>
where Id: Send,

§

impl<Id> Sync for BspNode<Id>
where Id: Sync,

§

impl<Id> Unpin for BspNode<Id>
where Id: Unpin,

§

impl<Id> UnsafeUnpin for BspNode<Id>
where Id: UnsafeUnpin,

§

impl<Id> UnwindSafe for BspNode<Id>
where Id: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.