pub struct MlfmmOperator { /* private fields */ }Expand description
MLFMM linear operator
Implementations§
Source§impl MlfmmOperator
impl MlfmmOperator
Sourcepub fn new(system: MlfmmSystem) -> Self
pub fn new(system: MlfmmSystem) -> Self
Create a new MLFMM operator
Sourcepub fn system(&self) -> &MlfmmSystem
pub fn system(&self) -> &MlfmmSystem
Get a reference to the underlying system
Trait Implementations§
Source§impl LinearOperator for MlfmmOperator
impl LinearOperator for MlfmmOperator
Auto Trait Implementations§
impl Freeze for MlfmmOperator
impl RefUnwindSafe for MlfmmOperator
impl Send for MlfmmOperator
impl Sync for MlfmmOperator
impl Unpin for MlfmmOperator
impl UnwindSafe for MlfmmOperator
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> 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