pub struct AppliedFile {
pub path: String,
pub blake3_first8: String,
pub applied: bool,
pub warnings: Vec<String>,
}Expand description
Result of applying a single file
Contains information about a successfully applied file.
Fields§
§path: StringPath to the file that was applied
blake3_first8: StringFirst 8 characters of BLAKE3 hash of new content
applied: boolWhether the file was successfully applied
warnings: Vec<String>Any warnings generated during application
Trait Implementations§
Source§impl Clone for AppliedFile
impl Clone for AppliedFile
Source§fn clone(&self) -> AppliedFile
fn clone(&self) -> AppliedFile
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 AppliedFile
impl Debug for AppliedFile
Source§impl PartialEq for AppliedFile
impl PartialEq for AppliedFile
impl Eq for AppliedFile
impl StructuralPartialEq for AppliedFile
Auto Trait Implementations§
impl Freeze for AppliedFile
impl RefUnwindSafe for AppliedFile
impl Send for AppliedFile
impl Sync for AppliedFile
impl Unpin for AppliedFile
impl UnsafeUnpin for AppliedFile
impl UnwindSafe for AppliedFile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.