pub struct ProviderLinsolveOptions {
pub lower: bool,
pub upper: bool,
pub rectangular: bool,
pub transposed: bool,
pub conjugate: bool,
pub symmetric: bool,
pub posdef: bool,
pub rcond: Option<f64>,
}Fields§
§lower: bool§upper: bool§rectangular: bool§transposed: bool§conjugate: bool§symmetric: bool§posdef: bool§rcond: Option<f64>Trait Implementations§
Source§impl Clone for ProviderLinsolveOptions
impl Clone for ProviderLinsolveOptions
Source§fn clone(&self) -> ProviderLinsolveOptions
fn clone(&self) -> ProviderLinsolveOptions
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 moreSource§impl Debug for ProviderLinsolveOptions
impl Debug for ProviderLinsolveOptions
Source§impl Default for ProviderLinsolveOptions
impl Default for ProviderLinsolveOptions
Source§fn default() -> ProviderLinsolveOptions
fn default() -> ProviderLinsolveOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProviderLinsolveOptions
impl<'de> Deserialize<'de> for ProviderLinsolveOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProviderLinsolveOptions
impl PartialEq for ProviderLinsolveOptions
Source§impl Serialize for ProviderLinsolveOptions
impl Serialize for ProviderLinsolveOptions
impl Copy for ProviderLinsolveOptions
impl StructuralPartialEq for ProviderLinsolveOptions
Auto Trait Implementations§
impl Freeze for ProviderLinsolveOptions
impl RefUnwindSafe for ProviderLinsolveOptions
impl Send for ProviderLinsolveOptions
impl Sync for ProviderLinsolveOptions
impl Unpin for ProviderLinsolveOptions
impl UnwindSafe for ProviderLinsolveOptions
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