pub enum CatalogStorageFormat {
Po,
Ndjson,
}Expand description
Storage format used by the high-level catalog API.
Variants§
Po
Read and write classic gettext PO catalogs.
Ndjson
Read and write Ferrocat’s NDJSON catalog format with a small frontmatter header.
Trait Implementations§
Source§impl Clone for CatalogStorageFormat
impl Clone for CatalogStorageFormat
Source§fn clone(&self) -> CatalogStorageFormat
fn clone(&self) -> CatalogStorageFormat
Returns a duplicate of the value. Read more
1.0.0 · 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 CatalogStorageFormat
impl Debug for CatalogStorageFormat
Source§impl Default for CatalogStorageFormat
impl Default for CatalogStorageFormat
Source§fn default() -> CatalogStorageFormat
fn default() -> CatalogStorageFormat
Returns the “default value” for a type. Read more
Source§impl PartialEq for CatalogStorageFormat
impl PartialEq for CatalogStorageFormat
impl Copy for CatalogStorageFormat
impl Eq for CatalogStorageFormat
impl StructuralPartialEq for CatalogStorageFormat
Auto Trait Implementations§
impl Freeze for CatalogStorageFormat
impl RefUnwindSafe for CatalogStorageFormat
impl Send for CatalogStorageFormat
impl Sync for CatalogStorageFormat
impl Unpin for CatalogStorageFormat
impl UnsafeUnpin for CatalogStorageFormat
impl UnwindSafe for CatalogStorageFormat
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