pub struct Flat<T>(/* private fields */);Expand description
A state in a flat vector space: the increment simply adds.
Trait Implementations§
Source§impl<T> Integrable for Flat<T>
impl<T> Integrable for Flat<T>
Source§type Increment = T
type Increment = T
The tangent/algebra element that advances a
Self::Point.Source§fn reconstruct(base: &T, increment: &T) -> Result<T, TensorError>
fn reconstruct(base: &T, increment: &T) -> Result<T, TensorError>
Advances
base by increment.Auto Trait Implementations§
impl<T> Freeze for Flat<T>
impl<T> RefUnwindSafe for Flat<T>where
T: RefUnwindSafe,
impl<T> Send for Flat<T>where
T: Send,
impl<T> Sync for Flat<T>where
T: Sync,
impl<T> Unpin for Flat<T>where
T: Unpin,
impl<T> UnsafeUnpin for Flat<T>
impl<T> UnwindSafe for Flat<T>where
T: UnwindSafe,
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