pub enum MigrationPhase {
Initializing,
CreatingRepository,
CloningRepository,
PushingRepository,
MigratingLabels,
MigratingMilestones,
MigratingIssues,
MigratingPullRequests,
MigratingReleases,
MigratingWiki,
Verifying,
Complete,
}Expand description
Phases of the migration process.
Variants§
Initializing
Initializing migration.
CreatingRepository
Creating repository on Guts.
CloningRepository
Cloning source repository.
PushingRepository
Pushing to Guts.
MigratingLabels
Migrating labels.
MigratingMilestones
Migrating milestones.
MigratingIssues
Migrating issues.
MigratingPullRequests
Migrating pull requests.
MigratingReleases
Migrating releases.
MigratingWiki
Migrating wiki.
Verifying
Verifying migration.
Complete
Migration complete.
Trait Implementations§
Source§impl Clone for MigrationPhase
impl Clone for MigrationPhase
Source§fn clone(&self) -> MigrationPhase
fn clone(&self) -> MigrationPhase
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 MigrationPhase
Source§impl Debug for MigrationPhase
impl Debug for MigrationPhase
Source§impl Display for MigrationPhase
impl Display for MigrationPhase
impl Eq for MigrationPhase
Source§impl PartialEq for MigrationPhase
impl PartialEq for MigrationPhase
Source§fn eq(&self, other: &MigrationPhase) -> bool
fn eq(&self, other: &MigrationPhase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MigrationPhase
Auto Trait Implementations§
impl Freeze for MigrationPhase
impl RefUnwindSafe for MigrationPhase
impl Send for MigrationPhase
impl Sync for MigrationPhase
impl Unpin for MigrationPhase
impl UnsafeUnpin for MigrationPhase
impl UnwindSafe for MigrationPhase
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.