pub enum LayoutState {
Uninitialized,
Running,
Paused,
Converged,
}Expand description
Current state of the layout.
Variants§
Uninitialized
Layout is not initialized.
Running
Layout is running.
Paused
Layout is paused.
Converged
Layout has converged.
Trait Implementations§
Source§impl Clone for LayoutState
impl Clone for LayoutState
Source§fn clone(&self) -> LayoutState
fn clone(&self) -> LayoutState
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 LayoutState
impl Debug for LayoutState
Source§impl PartialEq for LayoutState
impl PartialEq for LayoutState
impl Copy for LayoutState
impl Eq for LayoutState
impl StructuralPartialEq for LayoutState
Auto Trait Implementations§
impl Freeze for LayoutState
impl RefUnwindSafe for LayoutState
impl Send for LayoutState
impl Sync for LayoutState
impl Unpin for LayoutState
impl UnsafeUnpin for LayoutState
impl UnwindSafe for LayoutState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.