#[non_exhaustive]
pub enum Shape {
Show 13 variants Bottom, Any, Optional(Box<Shape, Global>), Null, Bool, StringT, Integer, Floating, VecT { elem_type: Box<Shape, Global>, }, Struct { fields: LinkedHashMap<String, Shape, RandomState>, }, Tuple(Vec<Shape, Global>, u64), MapT { val_type: Box<Shape, Global>, }, Opaque(String),
}
Expand description

The type representing the inferred structure

A word of caution: Everything in this crate is “internal API”, but for this type in particular, since it is very central to how json_typegen works, be prepared that major breaking changes may need to be made to this in the future.

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.
§

Bottom

Bottom represents the absence of any inference information

§

Any

Any represents conflicting inference information that can not be represented by any single shape

§

Optional(Box<Shape, Global>)

Optional(T) represents that a value is nullable, or not always present

§

Null

Equivalent to Optional(Bottom), Null represents optionality with no further information

§

Bool

§

StringT

§

Integer

§

Floating

§

VecT

Fields

§elem_type: Box<Shape, Global>
§

Struct

Fields

§fields: LinkedHashMap<String, Shape, RandomState>
§

Tuple(Vec<Shape, Global>, u64)

§

MapT

Fields

§val_type: Box<Shape, Global>
§

Opaque(String)

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.