#[repr(u8)]pub enum FillKind {
Normal = 0,
Reversal = 1,
Correction = 2,
}Variants§
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FillKind
impl<'de> Deserialize<'de> for FillKind
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 JsonSchema for FillKind
impl JsonSchema for FillKind
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreimpl Copy for FillKind
impl Eq for FillKind
impl StructuralPartialEq for FillKind
Auto Trait Implementations§
impl Freeze for FillKind
impl RefUnwindSafe for FillKind
impl Send for FillKind
impl Sync for FillKind
impl Unpin for FillKind
impl UnwindSafe for FillKind
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