pub struct TrackerBindOutcome {
pub name: String,
pub content_rev: Option<String>,
pub files: usize,
pub origin: BindOrigin,
pub warnings: Vec<String>,
}Expand description
How a tracker’s content landed in a workspace.
Fields§
§name: String§content_rev: Option<String>§files: usize§origin: BindOrigin§warnings: Vec<String>Re-renders that failed after the lane head landed. See
RestoreReport::warnings.
Trait Implementations§
Source§impl Clone for TrackerBindOutcome
impl Clone for TrackerBindOutcome
Source§fn clone(&self) -> TrackerBindOutcome
fn clone(&self) -> TrackerBindOutcome
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 TrackerBindOutcome
impl Debug for TrackerBindOutcome
impl Eq for TrackerBindOutcome
Source§impl PartialEq for TrackerBindOutcome
impl PartialEq for TrackerBindOutcome
impl StructuralPartialEq for TrackerBindOutcome
Auto Trait Implementations§
impl Freeze for TrackerBindOutcome
impl RefUnwindSafe for TrackerBindOutcome
impl Send for TrackerBindOutcome
impl Sync for TrackerBindOutcome
impl Unpin for TrackerBindOutcome
impl UnsafeUnpin for TrackerBindOutcome
impl UnwindSafe for TrackerBindOutcome
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