pub struct ArchaeologyResult {
pub evolution: CodeEvolution,
pub why_explanation: String,
pub timeline: Vec<TimelineEvent>,
}Expand description
Archaeological investigation result.
Fields§
§evolution: CodeEvolutionThe code unit investigated.
why_explanation: String“Why” explanation.
timeline: Vec<TimelineEvent>“When” timeline.
Trait Implementations§
Source§impl Clone for ArchaeologyResult
impl Clone for ArchaeologyResult
Source§fn clone(&self) -> ArchaeologyResult
fn clone(&self) -> ArchaeologyResult
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 ArchaeologyResult
impl Debug for ArchaeologyResult
Source§impl<'de> Deserialize<'de> for ArchaeologyResult
impl<'de> Deserialize<'de> for ArchaeologyResult
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 ArchaeologyResult
impl RefUnwindSafe for ArchaeologyResult
impl Send for ArchaeologyResult
impl Sync for ArchaeologyResult
impl Unpin for ArchaeologyResult
impl UnsafeUnpin for ArchaeologyResult
impl UnwindSafe for ArchaeologyResult
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