pub struct IncarnationWisdom {
pub lesson: String,
pub learned_from: IncarnationId,
pub confidence: f64,
pub applicable: bool,
}Fields§
§lesson: String§learned_from: IncarnationId§confidence: f64§applicable: boolTrait Implementations§
Source§impl Clone for IncarnationWisdom
impl Clone for IncarnationWisdom
Source§fn clone(&self) -> IncarnationWisdom
fn clone(&self) -> IncarnationWisdom
Returns a duplicate of the value. Read more
1.0.0 · 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 IncarnationWisdom
impl Debug for IncarnationWisdom
Source§impl<'de> Deserialize<'de> for IncarnationWisdom
impl<'de> Deserialize<'de> for IncarnationWisdom
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 IncarnationWisdom
impl RefUnwindSafe for IncarnationWisdom
impl Send for IncarnationWisdom
impl Sync for IncarnationWisdom
impl Unpin for IncarnationWisdom
impl UnsafeUnpin for IncarnationWisdom
impl UnwindSafe for IncarnationWisdom
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