pub struct CompanionTracker {
pub name: &'static str,
pub audience: &'static str,
pub merge_with_source: bool,
}Expand description
A tracker a template’s checkpoint deposits into. Created through the same
CLI path as newgit tracker create, so trackers stay CLI-managed and
templates never hand-write tracker TOML.
Fields§
§name: &'static str§audience: &'static str§merge_with_source: boolTrait Implementations§
Source§impl Clone for CompanionTracker
impl Clone for CompanionTracker
Source§fn clone(&self) -> CompanionTracker
fn clone(&self) -> CompanionTracker
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 moreimpl Copy for CompanionTracker
Auto Trait Implementations§
impl Freeze for CompanionTracker
impl RefUnwindSafe for CompanionTracker
impl Send for CompanionTracker
impl Sync for CompanionTracker
impl Unpin for CompanionTracker
impl UnsafeUnpin for CompanionTracker
impl UnwindSafe for CompanionTracker
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