pub struct GitAiFileEntry {
pub path: String,
pub ai_line_ranges: Vec<(u32, u32)>,
}Expand description
Per-file entry from attestation section.
Fields§
§path: String§ai_line_ranges: Vec<(u32, u32)>AI-authored line ranges as (start, end) inclusive, 1-indexed.
Trait Implementations§
Source§impl Clone for GitAiFileEntry
impl Clone for GitAiFileEntry
Source§fn clone(&self) -> GitAiFileEntry
fn clone(&self) -> GitAiFileEntry
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 moreAuto Trait Implementations§
impl Freeze for GitAiFileEntry
impl RefUnwindSafe for GitAiFileEntry
impl Send for GitAiFileEntry
impl Sync for GitAiFileEntry
impl Unpin for GitAiFileEntry
impl UnsafeUnpin for GitAiFileEntry
impl UnwindSafe for GitAiFileEntry
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