pub enum ProbeSource {
Override,
KnownLocation,
PathLookup,
Flatpak,
Snap,
}Expand description
Where a browser executable path was resolved from.
Variants§
Override
An explicit override environment variable.
KnownLocation
A well-known installation path.
PathLookup
A PATH lookup candidate.
Flatpak
A Flatpak export path.
Snap
A Snap export path.
Trait Implementations§
Source§impl Clone for ProbeSource
impl Clone for ProbeSource
Source§fn clone(&self) -> ProbeSource
fn clone(&self) -> ProbeSource
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 ProbeSource
impl Debug for ProbeSource
Source§impl PartialEq for ProbeSource
impl PartialEq for ProbeSource
impl Copy for ProbeSource
impl Eq for ProbeSource
impl StructuralPartialEq for ProbeSource
Auto Trait Implementations§
impl Freeze for ProbeSource
impl RefUnwindSafe for ProbeSource
impl Send for ProbeSource
impl Sync for ProbeSource
impl Unpin for ProbeSource
impl UnsafeUnpin for ProbeSource
impl UnwindSafe for ProbeSource
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