pub struct SelfImprovementView {
pub active_overlay: Option<PolicyOverlay>,
pub reflections: Vec<ReflectionRecord>,
pub policy_tunings: Vec<PolicyTuningRecord>,
pub strategy_preferences: Vec<StrategyPreferenceRecord>,
pub tool_performance: Vec<ToolPerformanceRecord>,
pub profile_patches: Vec<ProfilePatchRecord>,
}Fields§
§active_overlay: Option<PolicyOverlay>§reflections: Vec<ReflectionRecord>§policy_tunings: Vec<PolicyTuningRecord>§strategy_preferences: Vec<StrategyPreferenceRecord>§tool_performance: Vec<ToolPerformanceRecord>§profile_patches: Vec<ProfilePatchRecord>Trait Implementations§
Source§impl Clone for SelfImprovementView
impl Clone for SelfImprovementView
Source§fn clone(&self) -> SelfImprovementView
fn clone(&self) -> SelfImprovementView
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 SelfImprovementView
impl Debug for SelfImprovementView
Source§impl<'de> Deserialize<'de> for SelfImprovementView
impl<'de> Deserialize<'de> for SelfImprovementView
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 SelfImprovementView
impl PartialEq for SelfImprovementView
Source§fn eq(&self, other: &SelfImprovementView) -> bool
fn eq(&self, other: &SelfImprovementView) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SelfImprovementView
impl Serialize for SelfImprovementView
impl StructuralPartialEq for SelfImprovementView
Auto Trait Implementations§
impl Freeze for SelfImprovementView
impl RefUnwindSafe for SelfImprovementView
impl Send for SelfImprovementView
impl Sync for SelfImprovementView
impl Unpin for SelfImprovementView
impl UnsafeUnpin for SelfImprovementView
impl UnwindSafe for SelfImprovementView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more