pub struct TrackerReport {
pub name: String,
pub content_rev: Option<String>,
pub lane_head: Option<String>,
}Fields§
§name: String§content_rev: Option<String>None when the tracker is defined but this instance has no binding.
lane_head: Option<String>The lane head/default, when one has been merged.
Implementations§
Source§impl TrackerReport
impl TrackerReport
Sourcepub fn never_pulled(&self) -> bool
pub fn never_pulled(&self) -> bool
The lane has content this instance never had: pulling is safe advice.
Trait Implementations§
Source§impl Clone for TrackerReport
impl Clone for TrackerReport
Source§fn clone(&self) -> TrackerReport
fn clone(&self) -> TrackerReport
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 TrackerReport
impl Debug for TrackerReport
impl Eq for TrackerReport
Source§impl PartialEq for TrackerReport
impl PartialEq for TrackerReport
impl StructuralPartialEq for TrackerReport
Auto Trait Implementations§
impl Freeze for TrackerReport
impl RefUnwindSafe for TrackerReport
impl Send for TrackerReport
impl Sync for TrackerReport
impl Unpin for TrackerReport
impl UnsafeUnpin for TrackerReport
impl UnwindSafe for TrackerReport
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