pub enum ServiceReleasechannel {
Slow,
Default,
Fast,
Unknown(String),
}Expand description
Inline enum for Service.releaseChannel.
Variants§
Trait Implementations§
Source§impl Clone for ServiceReleasechannel
impl Clone for ServiceReleasechannel
Source§fn clone(&self) -> ServiceReleasechannel
fn clone(&self) -> ServiceReleasechannel
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 ServiceReleasechannel
impl Debug for ServiceReleasechannel
Source§impl Default for ServiceReleasechannel
impl Default for ServiceReleasechannel
Source§fn default() -> ServiceReleasechannel
fn default() -> ServiceReleasechannel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceReleasechannel
impl<'de> Deserialize<'de> for ServiceReleasechannel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ServiceReleasechannel
impl Display for ServiceReleasechannel
Source§impl PartialEq for ServiceReleasechannel
impl PartialEq for ServiceReleasechannel
Source§fn eq(&self, other: &ServiceReleasechannel) -> bool
fn eq(&self, other: &ServiceReleasechannel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceReleasechannel
impl Serialize for ServiceReleasechannel
impl StructuralPartialEq for ServiceReleasechannel
Auto Trait Implementations§
impl Freeze for ServiceReleasechannel
impl RefUnwindSafe for ServiceReleasechannel
impl Send for ServiceReleasechannel
impl Sync for ServiceReleasechannel
impl Unpin for ServiceReleasechannel
impl UnsafeUnpin for ServiceReleasechannel
impl UnwindSafe for ServiceReleasechannel
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