pub enum Distro {
Ubuntu(Apt),
Debian(Apt),
Archlinux(Pacman),
OpenSuse(Zypper),
Fedora(Dnf),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Distro
impl RefUnwindSafe for Distro
impl Send for Distro
impl Sync for Distro
impl Unpin for Distro
impl UnwindSafe for Distro
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