#[non_exhaustive]pub enum FileFormat {
Toml,
Ron,
Json,
Yaml,
}
Expand description
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.
Toml
Available on crate feature
toml
only.The toml language. Supported by toml.
Ron
Available on crate feature
ron
only.The ron language. Supported by ron.
Json
Available on crate feature
json
only.The json language. Supported by serde_json.
Yaml
Available on crate feature
yaml
only.The yaml language. Supported by serde_yaml.
Implementations§
Source§impl FileFormat
impl FileFormat
Sourcepub const DEFAULT_FILE_FORMAT: FileFormat = FileFormat::Toml
pub const DEFAULT_FILE_FORMAT: FileFormat = FileFormat::Toml
Default file format.
Priority order:
- Toml;
- Json;
- Yaml;
- Ron;
Sourcepub const fn extension(&self) -> &'static str
pub const fn extension(&self) -> &'static str
Get the file extension of the given language.
Note that for the YAML language, this will return only yaml
.
Trait Implementations§
Source§impl Clone for FileFormat
impl Clone for FileFormat
Source§fn clone(&self) -> FileFormat
fn clone(&self) -> FileFormat
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 FileFormat
impl Debug for FileFormat
Source§impl Default for FileFormat
impl Default for FileFormat
Source§impl PartialEq for FileFormat
impl PartialEq for FileFormat
impl Copy for FileFormat
impl Eq for FileFormat
impl StructuralPartialEq for FileFormat
Auto Trait Implementations§
impl Freeze for FileFormat
impl RefUnwindSafe for FileFormat
impl Send for FileFormat
impl Sync for FileFormat
impl Unpin for FileFormat
impl UnwindSafe for FileFormat
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,
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.