pub struct PublicSchema {
pub name: String,
pub version: u32,
pub schema: Value,
}Expand description
One named generated JSON Schema.
Fields§
§name: StringStable public type name.
version: u32Contract version for this schema.
schema: ValueJSON Schema generated by schemars.
Trait Implementations§
Source§impl Clone for PublicSchema
impl Clone for PublicSchema
Source§fn clone(&self) -> PublicSchema
fn clone(&self) -> PublicSchema
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 PublicSchema
impl Debug for PublicSchema
Source§impl<'de> Deserialize<'de> for PublicSchema
impl<'de> Deserialize<'de> for PublicSchema
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 PublicSchema
impl JsonSchema for PublicSchema
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 inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for PublicSchema
impl PartialEq for PublicSchema
Source§impl Serialize for PublicSchema
impl Serialize for PublicSchema
impl StructuralPartialEq for PublicSchema
Auto Trait Implementations§
impl Freeze for PublicSchema
impl RefUnwindSafe for PublicSchema
impl Send for PublicSchema
impl Sync for PublicSchema
impl Unpin for PublicSchema
impl UnsafeUnpin for PublicSchema
impl UnwindSafe for PublicSchema
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