#[non_exhaustive]pub enum ReshapeCodecConfiguration {
V1(ReshapeCodecConfigurationV1),
}Expand description
A wrapper to handle various versions of Reshape codec configuration parameters.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
V1(ReshapeCodecConfigurationV1)
Version 1.0.
Trait Implementations§
Source§impl Clone for ReshapeCodecConfiguration
impl Clone for ReshapeCodecConfiguration
Source§fn clone(&self) -> ReshapeCodecConfiguration
fn clone(&self) -> ReshapeCodecConfiguration
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 ConfigurationSerialize for ReshapeCodecConfiguration
impl ConfigurationSerialize for ReshapeCodecConfiguration
Source§fn try_from_configuration(configuration: Configuration) -> Result<Self, Error>
fn try_from_configuration(configuration: Configuration) -> Result<Self, Error>
Convert from a configuration. Read more
Source§impl Debug for ReshapeCodecConfiguration
impl Debug for ReshapeCodecConfiguration
Source§impl<'de> Deserialize<'de> for ReshapeCodecConfiguration
impl<'de> Deserialize<'de> for ReshapeCodecConfiguration
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 ReshapeCodecConfiguration
impl Display for ReshapeCodecConfiguration
impl Eq for ReshapeCodecConfiguration
Source§impl From<ReshapeCodecConfigurationV1> for ReshapeCodecConfiguration
impl From<ReshapeCodecConfigurationV1> for ReshapeCodecConfiguration
Source§fn from(value: ReshapeCodecConfigurationV1) -> Self
fn from(value: ReshapeCodecConfigurationV1) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for ReshapeCodecConfiguration
Auto Trait Implementations§
impl Freeze for ReshapeCodecConfiguration
impl RefUnwindSafe for ReshapeCodecConfiguration
impl Send for ReshapeCodecConfiguration
impl Sync for ReshapeCodecConfiguration
impl Unpin for ReshapeCodecConfiguration
impl UnsafeUnpin for ReshapeCodecConfiguration
impl UnwindSafe for ReshapeCodecConfiguration
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.