Enum icu_provider::buf::BufferFormat
source · [−]#[non_exhaustive]
pub enum BufferFormat {
Json,
Bincode1,
Postcard1,
}
Expand description
An enum expressing all Serde formats known to ICU4X.
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.
Json
Serialize using JavaScript Object Notation (JSON).
Bincode1
Serialize using Bincode version 1.
Postcard1
Serialize using Postcard version 0.7.
Implementations
sourceimpl BufferFormat
impl BufferFormat
sourcepub fn check_available(&self) -> Result<(), DataError>
pub fn check_available(&self) -> Result<(), DataError>
Returns an error if the buffer format is not enabled.
Trait Implementations
sourceimpl Clone for BufferFormat
impl Clone for BufferFormat
sourcefn clone(&self) -> BufferFormat
fn clone(&self) -> BufferFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BufferFormat
impl Debug for BufferFormat
sourceimpl<'de> Deserialize<'de> for BufferFormat
impl<'de> Deserialize<'de> for BufferFormat
sourcefn 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
sourceimpl Hash for BufferFormat
impl Hash for BufferFormat
sourceimpl PartialEq<BufferFormat> for BufferFormat
impl PartialEq<BufferFormat> for BufferFormat
sourceimpl Serialize for BufferFormat
impl Serialize for BufferFormat
impl Copy for BufferFormat
impl Eq for BufferFormat
impl StructuralEq for BufferFormat
impl StructuralPartialEq for BufferFormat
Auto Trait Implementations
impl RefUnwindSafe for BufferFormat
impl Send for BufferFormat
impl Sync for BufferFormat
impl Unpin for BufferFormat
impl UnwindSafe for BufferFormat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Serialize for T where
T: Serialize + ?Sized,
impl<T> Serialize for T where
T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more