module
Schematics::Struct
Overview
Struct module for immutable value types
Example:
struct Point
include Schematics::Struct
field x, Float64, validators: [Schematics.gte(0.0)]
field y, Float64, validators: [Schematics.gte(0.0)]
end