pub enum FormatSupport {
NativeReadWrite,
NativeReadOnly,
NativeWriteOnly,
AdapterRequired,
MetadataOnly,
}Expand description
Declares whether a format is implemented natively in this crate.
Variants§
Trait Implementations§
Source§impl Clone for FormatSupport
impl Clone for FormatSupport
Source§fn clone(&self) -> FormatSupport
fn clone(&self) -> FormatSupport
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 Debug for FormatSupport
impl Debug for FormatSupport
Source§impl Hash for FormatSupport
impl Hash for FormatSupport
Source§impl PartialEq for FormatSupport
impl PartialEq for FormatSupport
Source§fn eq(&self, other: &FormatSupport) -> bool
fn eq(&self, other: &FormatSupport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FormatSupport
impl Eq for FormatSupport
impl StructuralPartialEq for FormatSupport
Auto Trait Implementations§
impl Freeze for FormatSupport
impl RefUnwindSafe for FormatSupport
impl Send for FormatSupport
impl Sync for FormatSupport
impl Unpin for FormatSupport
impl UnsafeUnpin for FormatSupport
impl UnwindSafe for FormatSupport
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