pub enum ReleaseChannel {
Default,
Stable,
Beta,
Dev,
Canary,
Nightly,
Esr,
DeveloperEdition,
Snapshot,
Twilight,
}Expand description
Known release channels exposed by the workspace.
Variants§
Default
Default install without a vendor-defined channel model.
Stable
Stable channel.
Beta
Beta channel.
Dev
Dev channel.
Canary
Canary channel.
Nightly
Nightly channel.
Esr
Firefox ESR channel.
DeveloperEdition
Firefox Developer Edition channel.
Snapshot
Vivaldi Snapshot channel.
Twilight
Zen Twilight channel.
Trait Implementations§
Source§impl Clone for ReleaseChannel
impl Clone for ReleaseChannel
Source§fn clone(&self) -> ReleaseChannel
fn clone(&self) -> ReleaseChannel
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 ReleaseChannel
impl Debug for ReleaseChannel
Source§impl Display for ReleaseChannel
impl Display for ReleaseChannel
Source§impl Hash for ReleaseChannel
impl Hash for ReleaseChannel
Source§impl Ord for ReleaseChannel
impl Ord for ReleaseChannel
Source§fn cmp(&self, other: &ReleaseChannel) -> Ordering
fn cmp(&self, other: &ReleaseChannel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReleaseChannel
impl PartialEq for ReleaseChannel
Source§impl PartialOrd for ReleaseChannel
impl PartialOrd for ReleaseChannel
impl Copy for ReleaseChannel
impl Eq for ReleaseChannel
impl StructuralPartialEq for ReleaseChannel
Auto Trait Implementations§
impl Freeze for ReleaseChannel
impl RefUnwindSafe for ReleaseChannel
impl Send for ReleaseChannel
impl Sync for ReleaseChannel
impl Unpin for ReleaseChannel
impl UnsafeUnpin for ReleaseChannel
impl UnwindSafe for ReleaseChannel
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