#[non_exhaustive]pub enum ZfpyCodecConfiguration {
Numcodecs(ZfpyCodecConfigurationNumcodecs),
}Expand description
A wrapper to handle various versions of zfpy 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.
Numcodecs(ZfpyCodecConfigurationNumcodecs)
numcodecs version 0.8.
Trait Implementations§
Source§impl Clone for ZfpyCodecConfiguration
impl Clone for ZfpyCodecConfiguration
Source§fn clone(&self) -> ZfpyCodecConfiguration
fn clone(&self) -> ZfpyCodecConfiguration
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 ZfpyCodecConfiguration
impl ConfigurationSerialize for ZfpyCodecConfiguration
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 ZfpyCodecConfiguration
impl Debug for ZfpyCodecConfiguration
Source§impl<'de> Deserialize<'de> for ZfpyCodecConfiguration
impl<'de> Deserialize<'de> for ZfpyCodecConfiguration
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 ZfpyCodecConfiguration
impl Display for ZfpyCodecConfiguration
Source§impl From<ZfpyCodecConfigurationNumcodecs> for ZfpyCodecConfiguration
impl From<ZfpyCodecConfigurationNumcodecs> for ZfpyCodecConfiguration
Source§fn from(value: ZfpyCodecConfigurationNumcodecs) -> Self
fn from(value: ZfpyCodecConfigurationNumcodecs) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ZfpyCodecConfiguration
impl PartialEq for ZfpyCodecConfiguration
Source§impl Serialize for ZfpyCodecConfiguration
impl Serialize for ZfpyCodecConfiguration
impl StructuralPartialEq for ZfpyCodecConfiguration
Auto Trait Implementations§
impl Freeze for ZfpyCodecConfiguration
impl RefUnwindSafe for ZfpyCodecConfiguration
impl Send for ZfpyCodecConfiguration
impl Sync for ZfpyCodecConfiguration
impl Unpin for ZfpyCodecConfiguration
impl UnsafeUnpin for ZfpyCodecConfiguration
impl UnwindSafe for ZfpyCodecConfiguration
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