pub enum Kind {
Evolving,
QuasiStatic,
}Expand description
Whether a domain has state to roll forward.
Variants§
Evolving
Has state, and a stability limit on how far it can be stepped at once.
QuasiStatic
Has no state: solved from its inputs whenever asked, in zero time. Optics, a static load, an equilibrium reaction. Never subcycled — a solve is a solve.
Trait Implementations§
impl Copy for Kind
impl Eq for Kind
impl StructuralPartialEq for Kind
Auto Trait Implementations§
impl Freeze for Kind
impl RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl UnsafeUnpin for Kind
impl UnwindSafe for Kind
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