#[non_exhaustive]pub struct LinDist3FlowEquality {
pub origin: LinDist3FlowEqualityOrigin,
pub expression: LinDist3FlowLinearExpression,
}Expand description
One affine equality expression == 0.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.origin: LinDist3FlowEqualityOrigin§expression: LinDist3FlowLinearExpressionTrait Implementations§
Source§impl Clone for LinDist3FlowEquality
impl Clone for LinDist3FlowEquality
Source§fn clone(&self) -> LinDist3FlowEquality
fn clone(&self) -> LinDist3FlowEquality
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 LinDist3FlowEquality
impl Debug for LinDist3FlowEquality
Source§impl PartialEq for LinDist3FlowEquality
impl PartialEq for LinDist3FlowEquality
Source§fn eq(&self, other: &LinDist3FlowEquality) -> bool
fn eq(&self, other: &LinDist3FlowEquality) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LinDist3FlowEquality
Auto Trait Implementations§
impl Freeze for LinDist3FlowEquality
impl RefUnwindSafe for LinDist3FlowEquality
impl Send for LinDist3FlowEquality
impl Sync for LinDist3FlowEquality
impl Unpin for LinDist3FlowEquality
impl UnsafeUnpin for LinDist3FlowEquality
impl UnwindSafe for LinDist3FlowEquality
Blanket Implementations§
impl<T> Allocation for T
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