pub struct DynamicalSystem {
pub dimension: usize,
pub system_type: SystemType,
}Expand description
A nonlinear dynamical system of a given dimension.
Fields§
§dimension: usizeState-space dimension.
system_type: SystemTypeThe concrete type / parameters of the system.
Trait Implementations§
Source§impl Clone for DynamicalSystem
impl Clone for DynamicalSystem
Source§fn clone(&self) -> DynamicalSystem
fn clone(&self) -> DynamicalSystem
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 moreAuto Trait Implementations§
impl Freeze for DynamicalSystem
impl RefUnwindSafe for DynamicalSystem
impl Send for DynamicalSystem
impl Sync for DynamicalSystem
impl Unpin for DynamicalSystem
impl UnsafeUnpin for DynamicalSystem
impl UnwindSafe for DynamicalSystem
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