pub struct AugSysCache {
pub w_tag: Tag,
pub w_factor: Number,
pub d_x_tag: Tag,
pub delta_x: Number,
pub d_s_tag: Tag,
pub delta_s: Number,
pub j_c_tag: Tag,
pub d_c_tag: Tag,
pub delta_c: Number,
pub j_d_tag: Tag,
pub d_d_tag: Tag,
pub delta_d: Number,
}Fields§
§w_tag: Tag§w_factor: Number§d_x_tag: Tag§delta_x: Number§d_s_tag: Tag§delta_s: Number§j_c_tag: Tag§d_c_tag: Tag§delta_c: Number§j_d_tag: Tag§d_d_tag: Tag§delta_d: NumberTrait Implementations§
Source§impl Clone for AugSysCache
impl Clone for AugSysCache
Source§fn clone(&self) -> AugSysCache
fn clone(&self) -> AugSysCache
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AugSysCache
impl Debug for AugSysCache
Auto Trait Implementations§
impl Freeze for AugSysCache
impl RefUnwindSafe for AugSysCache
impl Send for AugSysCache
impl Sync for AugSysCache
impl Unpin for AugSysCache
impl UnsafeUnpin for AugSysCache
impl UnwindSafe for AugSysCache
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more