Enum gds::GdsFormatType
source · pub enum GdsFormatType {
Archive,
Filtered(Vec<Unsupported>),
}
Expand description
An enumeration of GDS mask formats.
As set by the FORMAT record.
Variants§
Archive
Default, sole fully-supported case.
Filtered(Vec<Unsupported>)
Filtered-format includes a list of Mask records. Not supported.
Trait Implementations§
source§impl Clone for GdsFormatType
impl Clone for GdsFormatType
source§fn clone(&self) -> GdsFormatType
fn clone(&self) -> GdsFormatType
Returns a copy 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 GdsFormatType
impl Debug for GdsFormatType
source§impl<'de> Deserialize<'de> for GdsFormatType
impl<'de> Deserialize<'de> for GdsFormatType
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 PartialEq for GdsFormatType
impl PartialEq for GdsFormatType
source§fn eq(&self, other: &GdsFormatType) -> bool
fn eq(&self, other: &GdsFormatType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GdsFormatType
impl Serialize for GdsFormatType
impl StructuralPartialEq for GdsFormatType
Auto Trait Implementations§
impl RefUnwindSafe for GdsFormatType
impl Send for GdsFormatType
impl Sync for GdsFormatType
impl Unpin for GdsFormatType
impl UnwindSafe for GdsFormatType
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