pub struct FileInspection {
pub relative_path: String,
pub sha256: String,
pub size: u64,
}Expand description
Per-file inspection result from batch_inspect.
Fields§
§relative_path: StringRelative path (same key as input).
sha256: StringSHA-256 hex hash of the file content.
size: u64File size in bytes.
Trait Implementations§
Source§impl Clone for FileInspection
impl Clone for FileInspection
Source§fn clone(&self) -> FileInspection
fn clone(&self) -> FileInspection
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 moreAuto Trait Implementations§
impl Freeze for FileInspection
impl RefUnwindSafe for FileInspection
impl Send for FileInspection
impl Sync for FileInspection
impl Unpin for FileInspection
impl UnsafeUnpin for FileInspection
impl UnwindSafe for FileInspection
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