pub struct PreviousLife {
pub original_id: GoalId,
pub death_cause: String,
pub lessons_learned: Vec<String>,
pub karma: GoalKarma,
}Fields§
§original_id: GoalId§death_cause: String§lessons_learned: Vec<String>§karma: GoalKarmaTrait Implementations§
Source§impl Clone for PreviousLife
impl Clone for PreviousLife
Source§fn clone(&self) -> PreviousLife
fn clone(&self) -> PreviousLife
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 PreviousLife
impl Debug for PreviousLife
Source§impl<'de> Deserialize<'de> for PreviousLife
impl<'de> Deserialize<'de> for PreviousLife
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 PreviousLife
impl RefUnwindSafe for PreviousLife
impl Send for PreviousLife
impl Sync for PreviousLife
impl Unpin for PreviousLife
impl UnsafeUnpin for PreviousLife
impl UnwindSafe for PreviousLife
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