pub enum RuntimeSelection {
Chrome,
Alloy,
}Expand description
Runtime selection for Chromium-backed startup.
Chrome is the only currently supported runtime. Alloy is reserved as an
explicit future selection target, but remains unavailable in this phase.
Variants§
Chrome
Chrome-backed runtime path used by current CBF integration.
Alloy
Reserved for future Alloy runtime work. Selecting this currently fails.
Implementations§
Trait Implementations§
Source§impl Clone for RuntimeSelection
impl Clone for RuntimeSelection
Source§fn clone(&self) -> RuntimeSelection
fn clone(&self) -> RuntimeSelection
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 RuntimeSelection
impl Debug for RuntimeSelection
Source§impl Default for RuntimeSelection
impl Default for RuntimeSelection
Source§fn default() -> RuntimeSelection
fn default() -> RuntimeSelection
Returns the “default value” for a type. Read more
Source§impl Display for RuntimeSelection
impl Display for RuntimeSelection
Source§impl FromStr for RuntimeSelection
impl FromStr for RuntimeSelection
Source§impl PartialEq for RuntimeSelection
impl PartialEq for RuntimeSelection
impl Copy for RuntimeSelection
impl Eq for RuntimeSelection
impl StructuralPartialEq for RuntimeSelection
Auto Trait Implementations§
impl Freeze for RuntimeSelection
impl RefUnwindSafe for RuntimeSelection
impl Send for RuntimeSelection
impl Sync for RuntimeSelection
impl Unpin for RuntimeSelection
impl UnsafeUnpin for RuntimeSelection
impl UnwindSafe for RuntimeSelection
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