pub enum ChannelKinds {
Stable,
RC,
Beta,
Dev,
}Variants§
Trait Implementations§
Source§impl Debug for ChannelKinds
impl Debug for ChannelKinds
Source§impl Described<ElasticMeta> for ChannelKinds
impl Described<ElasticMeta> for ChannelKinds
Source§fn metadata() -> Descriptor<ElasticMeta>
fn metadata() -> Descriptor<ElasticMeta>
Get self description of this type
Source§impl<'de> Deserialize<'de> for ChannelKinds
impl<'de> Deserialize<'de> for ChannelKinds
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 ChannelKinds
impl Display for ChannelKinds
Source§impl FromStr for ChannelKinds
impl FromStr for ChannelKinds
Source§impl PartialEq for ChannelKinds
impl PartialEq for ChannelKinds
Source§impl Serialize for ChannelKindswhere
Self: Display,
impl Serialize for ChannelKindswhere
Self: Display,
Source§impl TryFrom<&str> for ChannelKinds
impl TryFrom<&str> for ChannelKinds
impl Eq for ChannelKinds
impl StructuralPartialEq for ChannelKinds
Auto Trait Implementations§
impl Freeze for ChannelKinds
impl RefUnwindSafe for ChannelKinds
impl Send for ChannelKinds
impl Sync for ChannelKinds
impl Unpin for ChannelKinds
impl UnwindSafe for ChannelKinds
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more