pub enum ReleaseChannel {
Stable,
Named(String),
}Expand description
Release channel selected for a package.
Variants§
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 (const: unstable) · 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 Default for ReleaseChannel
impl Default for ReleaseChannel
Source§fn default() -> ReleaseChannel
fn default() -> ReleaseChannel
Returns the “default value” for a type. Read more
impl Eq for ReleaseChannel
Source§impl PartialEq for ReleaseChannel
impl PartialEq for ReleaseChannel
Source§impl Serialize for ReleaseChannel
impl Serialize 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