pub enum OutputQuery {
Quantity(QuantitySpec),
Field(Projection),
Solution,
}Expand description
The kind of output an evaluation produces from a solved model.
Variants§
Quantity(QuantitySpec)
A scalar quantity reduced from the solution (energy, flux, capacitance).
Field(Projection)
A projected field (potential or a derived component) over the mesh.
Solution
The full solved model solution as an opaque value.
Trait Implementations§
Source§impl Clone for OutputQuery
impl Clone for OutputQuery
Source§fn clone(&self) -> OutputQuery
fn clone(&self) -> OutputQuery
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for OutputQuery
impl !UnwindSafe for OutputQuery
impl Freeze for OutputQuery
impl Send for OutputQuery
impl Sync for OutputQuery
impl Unpin for OutputQuery
impl UnsafeUnpin for OutputQuery
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