pub enum InstallationStep {
CheckingRequirements,
DetectingPlatform,
CheckingVersionAvailability,
InstallingPrerequisites,
AddingRepository,
UpdatingPackages,
InstallingPostgres,
StartingService,
VerifyingInstallation,
Complete,
}Expand description
Installation step
Variants§
CheckingRequirements
Checking system requirements
DetectingPlatform
Detecting platform
CheckingVersionAvailability
Checking version availability
InstallingPrerequisites
Installing prerequisites
AddingRepository
Adding repository
UpdatingPackages
Updating package list
InstallingPostgres
Installing PostgreSQL
StartingService
Starting service
VerifyingInstallation
Verifying installation
Complete
Installation complete
Implementations§
Source§impl InstallationStep
impl InstallationStep
Sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Get step description
Trait Implementations§
Source§impl Clone for InstallationStep
impl Clone for InstallationStep
Source§fn clone(&self) -> InstallationStep
fn clone(&self) -> InstallationStep
Returns a duplicate of the value. Read more
1.0.0 · 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 InstallationStep
impl Debug for InstallationStep
Source§impl PartialEq for InstallationStep
impl PartialEq for InstallationStep
impl StructuralPartialEq for InstallationStep
Auto Trait Implementations§
impl Freeze for InstallationStep
impl RefUnwindSafe for InstallationStep
impl Send for InstallationStep
impl Sync for InstallationStep
impl Unpin for InstallationStep
impl UnwindSafe for InstallationStep
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