pub struct RenderOutcome {
pub path: Utf8PathBuf,
pub replacements: usize,
pub tracker: Option<String>,
}Expand description
One rendered file.
Carries no warning about lost hand edits: at bind there are none, and a
caveat printed when nothing is wrong is silent at the moment something
is. That report lives in render_drift, which speaks at checkpoint and
before a re-render, naming the file and how much of it is about to go.
Fields§
§path: Utf8PathBuf§replacements: usize§tracker: Option<String>The tracker owning the path, if any. None means source-owned.
Trait Implementations§
Source§impl Clone for RenderOutcome
impl Clone for RenderOutcome
Source§fn clone(&self) -> RenderOutcome
fn clone(&self) -> RenderOutcome
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 moreSource§impl Debug for RenderOutcome
impl Debug for RenderOutcome
impl Eq for RenderOutcome
Source§impl PartialEq for RenderOutcome
impl PartialEq for RenderOutcome
impl StructuralPartialEq for RenderOutcome
Auto Trait Implementations§
impl Freeze for RenderOutcome
impl RefUnwindSafe for RenderOutcome
impl Send for RenderOutcome
impl Sync for RenderOutcome
impl Unpin for RenderOutcome
impl UnsafeUnpin for RenderOutcome
impl UnwindSafe for RenderOutcome
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