pub struct FileEvidence {
pub path: String,
pub range: Option<String>,
pub blake3_pre_redaction: String,
pub priority: Priority,
}Expand description
Evidence of a single file’s inclusion in the packet
Fields§
§path: StringPath to the file relative to project root
range: Option<String>Optional range of lines included (e.g., “L1-L80”)
blake3_pre_redaction: StringBLAKE3 hash of the file content before redaction
priority: PriorityPriority level of this file
Trait Implementations§
Source§impl Clone for FileEvidence
impl Clone for FileEvidence
Source§fn clone(&self) -> FileEvidence
fn clone(&self) -> FileEvidence
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 FileEvidence
impl Debug for FileEvidence
Source§impl<'de> Deserialize<'de> for FileEvidence
impl<'de> Deserialize<'de> for FileEvidence
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 FileEvidence
impl RefUnwindSafe for FileEvidence
impl Send for FileEvidence
impl Sync for FileEvidence
impl Unpin for FileEvidence
impl UnsafeUnpin for FileEvidence
impl UnwindSafe for FileEvidence
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