pub enum OutputSchemaDialect {
JsonSchema2020_12Subset,
RustSerdeTypeName,
HostRegistered,
}Expand description
Enumerates the finite output schema dialect cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
JsonSchema2020_12Subset
Use this variant when the contract needs to represent json schema2020 12 subset; selecting it has no side effect by itself.
RustSerdeTypeName
Use this variant when the contract needs to represent rust serde type name; selecting it has no side effect by itself.
HostRegistered
Use this variant when the contract needs to represent host registered; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for OutputSchemaDialect
impl Clone for OutputSchemaDialect
Source§fn clone(&self) -> OutputSchemaDialect
fn clone(&self) -> OutputSchemaDialect
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 OutputSchemaDialect
impl Debug for OutputSchemaDialect
Source§impl<'de> Deserialize<'de> for OutputSchemaDialect
impl<'de> Deserialize<'de> for OutputSchemaDialect
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
impl Eq for OutputSchemaDialect
Source§impl PartialEq for OutputSchemaDialect
impl PartialEq for OutputSchemaDialect
Source§fn eq(&self, other: &OutputSchemaDialect) -> bool
fn eq(&self, other: &OutputSchemaDialect) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OutputSchemaDialect
impl Serialize for OutputSchemaDialect
impl StructuralPartialEq for OutputSchemaDialect
Auto Trait Implementations§
impl Freeze for OutputSchemaDialect
impl RefUnwindSafe for OutputSchemaDialect
impl Send for OutputSchemaDialect
impl Sync for OutputSchemaDialect
impl Unpin for OutputSchemaDialect
impl UnsafeUnpin for OutputSchemaDialect
impl UnwindSafe for OutputSchemaDialect
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