#[non_exhaustive]pub enum Options {
JsonSchema(SchemaValidationJSONSchema),
}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.
JsonSchema(SchemaValidationJSONSchema)
Trait Implementations§
source§impl OneofFull for Options
impl OneofFull for Options
source§fn descriptor() -> OneofDescriptor
fn descriptor() -> OneofDescriptor
Descriptor object for this oneof.
source§impl PartialEq for Options
impl PartialEq for Options
impl Oneof for Options
impl StructuralPartialEq for Options
Auto Trait Implementations§
impl !Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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