pub struct FileAttribution {
pub claude_chars: u64,
pub human_chars: u64,
pub percent: u32,
pub surface: String,
}Expand description
Per-file attribution details for git notes.
Fields§
§claude_chars: u64§human_chars: u64§percent: u32§surface: StringTrait Implementations§
Source§impl Clone for FileAttribution
impl Clone for FileAttribution
Source§fn clone(&self) -> FileAttribution
fn clone(&self) -> FileAttribution
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 FileAttribution
impl Debug for FileAttribution
Source§impl<'de> Deserialize<'de> for FileAttribution
impl<'de> Deserialize<'de> for FileAttribution
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 FileAttribution
impl RefUnwindSafe for FileAttribution
impl Send for FileAttribution
impl Sync for FileAttribution
impl Unpin for FileAttribution
impl UnsafeUnpin for FileAttribution
impl UnwindSafe for FileAttribution
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