pub struct FieldSummary {
pub solution_id: u64,
pub projection: String,
}Expand description
Parsed summary form of a solved Field.
The record a field’s read-construct string decodes into.
Fields§
§solution_id: u64Id of the solution the field was projected from.
projection: StringName of the projected quantity.
Trait Implementations§
Source§impl Clone for FieldSummary
impl Clone for FieldSummary
Source§fn clone(&self) -> FieldSummary
fn clone(&self) -> FieldSummary
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 FieldSummary
impl Debug for FieldSummary
impl Eq for FieldSummary
Source§impl PartialEq for FieldSummary
impl PartialEq for FieldSummary
Source§fn eq(&self, other: &FieldSummary) -> bool
fn eq(&self, other: &FieldSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FieldSummary
Auto Trait Implementations§
impl Freeze for FieldSummary
impl RefUnwindSafe for FieldSummary
impl Send for FieldSummary
impl Sync for FieldSummary
impl Unpin for FieldSummary
impl UnsafeUnpin for FieldSummary
impl UnwindSafe for FieldSummary
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