pub struct FormationOutcome {
pub formation_kind: FormationKind,
pub suggestors_used: Vec<String>,
pub fixed_point_reached: bool,
pub cycles_used: u32,
pub extra_loops_used: u32,
pub correlation_id: Option<String>,
pub quality_score: Option<f32>,
pub forced_fixed_point: bool,
}Fields§
§formation_kind: FormationKind§suggestors_used: Vec<String>§fixed_point_reached: bool§cycles_used: u32§extra_loops_used: u32§correlation_id: Option<String>§quality_score: Option<f32>§forced_fixed_point: boolImplementations§
Trait Implementations§
Source§impl Clone for FormationOutcome
impl Clone for FormationOutcome
Source§fn clone(&self) -> FormationOutcome
fn clone(&self) -> FormationOutcome
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 FormationOutcome
impl Debug for FormationOutcome
Source§impl<'de> Deserialize<'de> for FormationOutcome
impl<'de> Deserialize<'de> for FormationOutcome
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
Auto Trait Implementations§
impl Freeze for FormationOutcome
impl RefUnwindSafe for FormationOutcome
impl Send for FormationOutcome
impl Sync for FormationOutcome
impl Unpin for FormationOutcome
impl UnsafeUnpin for FormationOutcome
impl UnwindSafe for FormationOutcome
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