Skip to main content

ChunkMetadata

Struct ChunkMetadata 

Source
pub struct ChunkMetadata {
    pub source_type: Arc<str>,
    pub path: Option<Arc<str>>,
    pub commit: Option<Arc<str>>,
    pub author: Option<Arc<str>>,
    pub date: Option<Arc<str>>,
    pub base_offset: usize,
    pub base_line: usize,
    pub mtime_ns: Option<u64>,
    pub size_bytes: Option<u64>,
    pub decoded_span: Option<(usize, usize)>,
}
Expand description

Metadata that tracks the source location for a scanned chunk.

§Examples

use keyhog_core::ChunkMetadata;

let metadata = ChunkMetadata {
    source_type: "git-diff".into(),
    path: Some("src/lib.rs".into()),
    commit: Some("abc123".into()),
    author: Some("Dev".into()),
    date: Some("2026-03-26T00:00:00Z".into()),
    ..Default::default()
};

assert_eq!(&*metadata.source_type, "git-diff");

Fields§

§source_type: Arc<str>

Arc<str> (not String) so cloning a chunk’s metadata, done per decode sub-chunk, where every sub-chunk of a file shares the same source_type and path: is a refcount bump, not a fresh heap allocation + copy of each string. Mirrors the Arc<str> convention already used by MatchLocation in finding.rs; serialized through the same serde_arc_str helpers so no serde rc feature is needed.

§path: Option<Arc<str>>§commit: Option<Arc<str>>§author: Option<Arc<str>>§date: Option<Arc<str>>§base_offset: usize§base_line: usize

Number of lines that precede base_offset in the original file - the line-number analog of base_offset. Zero for whole-file chunks (single-pass mmap, stdin, http, git diffs). Non-zero only when a source slices one file into multiple chunks (the filesystem >window_size windowed path), where each window after the first starts partway through the file. The scanner computes a match’s line number within the chunk text and adds this base so the reported line is the absolute file line, not the per-window one - exactly mirroring how base_offset makes the byte offset absolute. Without it, a secret on line 584307 of a 70 MiB file was reported at the window-local line (e.g. line 2), making findings impossible to locate.

§mtime_ns: Option<u64>

File mtime in nanoseconds since UNIX epoch, when the source can surface it cheaply (filesystem walks). Optional because non-fs sources (stdin, http, git diffs) don’t have a meaningful mtime. Populated to drive the merkle-index metadata fast-path.

§size_bytes: Option<u64>

File size in bytes, when known cheaply at chunk-production time. Same shape and rationale as mtime_ns.

§decoded_span: Option<(usize, usize)>

For DECODE sub-chunks only: the [start, end) byte range of the freshly decoded text within data. A decode sub-chunk is a small window of already-scanned parent context with the decoded blob spliced in at this span; everything OUTSIDE the span was scanned (and any finding deduped) when the parent chunk was scanned, so the self-contained passes only need to rescan a focus window around this span instead of the whole splice. None for all non-decode chunks (whole-file, windowed, git-diff, …).

Trait Implementations§

Source§

impl Clone for ChunkMetadata

Source§

fn clone(&self) -> ChunkMetadata

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ChunkMetadata

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ChunkMetadata

Source§

fn default() -> ChunkMetadata

Returns the “default value” for a type. Read more
Source§

impl Serialize for ChunkMetadata

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more