pub struct LongitudinalArtifact {
pub schema: String,
pub repository: RepositorySummary,
pub window: ExportWindow,
pub summary: ArtifactSummary,
pub sessions: Vec<SessionSummary>,
pub events: Vec<NormalizedEvent>,
pub commits: Vec<GitCommit>,
pub changes: Vec<GitChange>,
pub file_lifetimes: Vec<FileLifetime>,
pub associations: Vec<EventAssociation>,
}Fields§
§schema: String§repository: RepositorySummary§window: ExportWindow§summary: ArtifactSummary§sessions: Vec<SessionSummary>§events: Vec<NormalizedEvent>§commits: Vec<GitCommit>§changes: Vec<GitChange>§file_lifetimes: Vec<FileLifetime>§associations: Vec<EventAssociation>Trait Implementations§
Source§impl Clone for LongitudinalArtifact
impl Clone for LongitudinalArtifact
Source§fn clone(&self) -> LongitudinalArtifact
fn clone(&self) -> LongitudinalArtifact
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 LongitudinalArtifact
impl Debug for LongitudinalArtifact
Source§impl<'de> Deserialize<'de> for LongitudinalArtifact
impl<'de> Deserialize<'de> for LongitudinalArtifact
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 LongitudinalArtifact
impl RefUnwindSafe for LongitudinalArtifact
impl Send for LongitudinalArtifact
impl Sync for LongitudinalArtifact
impl Unpin for LongitudinalArtifact
impl UnsafeUnpin for LongitudinalArtifact
impl UnwindSafe for LongitudinalArtifact
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