#[non_exhaustive]pub enum FillerRecord {
Zeros(u16),
}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.
Implementations§
Trait Implementations§
Source§impl Clone for FillerRecord
impl Clone for FillerRecord
Source§fn clone(&self) -> FillerRecord
fn clone(&self) -> FillerRecord
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 FillerRecord
impl Debug for FillerRecord
Source§impl<'de> Deserialize<'de> for FillerRecord
impl<'de> Deserialize<'de> for FillerRecord
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 Display for FillerRecord
impl Display for FillerRecord
Source§impl Hash for FillerRecord
impl Hash for FillerRecord
Source§impl PartialEq for FillerRecord
impl PartialEq for FillerRecord
Source§impl Serialize for FillerRecord
impl Serialize for FillerRecord
impl Eq for FillerRecord
impl StructuralPartialEq for FillerRecord
Auto Trait Implementations§
impl Freeze for FillerRecord
impl RefUnwindSafe for FillerRecord
impl Send for FillerRecord
impl Sync for FillerRecord
impl Unpin for FillerRecord
impl UnwindSafe for FillerRecord
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