pub enum DoctorIssueKind {
DanglingDependency,
DanglingParent,
DanglingSprint,
ParentCycle,
DependencyCycle,
DuplicateId,
IssuedId,
InvalidStatus,
RankAnomaly,
Collision,
MalformedRecord,
Filename,
}Expand description
Category of an integrity issue.
Variants§
DanglingDependency
DanglingParent
DanglingSprint
ParentCycle
DependencyCycle
DuplicateId
IssuedId
InvalidStatus
RankAnomaly
Collision
MalformedRecord
Filename
Trait Implementations§
Source§impl Clone for DoctorIssueKind
impl Clone for DoctorIssueKind
Source§fn clone(&self) -> DoctorIssueKind
fn clone(&self) -> DoctorIssueKind
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 DoctorIssueKind
Source§impl Debug for DoctorIssueKind
impl Debug for DoctorIssueKind
impl Eq for DoctorIssueKind
Source§impl Ord for DoctorIssueKind
impl Ord for DoctorIssueKind
Source§fn cmp(&self, other: &DoctorIssueKind) -> Ordering
fn cmp(&self, other: &DoctorIssueKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DoctorIssueKind
impl PartialEq for DoctorIssueKind
Source§impl PartialOrd for DoctorIssueKind
impl PartialOrd for DoctorIssueKind
impl StructuralPartialEq for DoctorIssueKind
Auto Trait Implementations§
impl Freeze for DoctorIssueKind
impl RefUnwindSafe for DoctorIssueKind
impl Send for DoctorIssueKind
impl Sync for DoctorIssueKind
impl Unpin for DoctorIssueKind
impl UnsafeUnpin for DoctorIssueKind
impl UnwindSafe for DoctorIssueKind
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more