pub enum CalciteId {
Variant0 {
partial: u64,
},
Variant1 {
final_: u64,
},
Variant2 {
and: Vec<CalciteId>,
},
Variant3 {
seq: Vec<CalciteId>,
},
Variant4(Option<Map<String, Value>>),
}Expand description
CalciteId
JSON schema
{
"oneOf": [
{
"type": "object",
"required": [
"partial"
],
"properties": {
"partial": {
"type": "integer",
"minimum": 0.0
}
}
},
{
"type": "object",
"required": [
"final"
],
"properties": {
"final": {
"type": "integer",
"minimum": 0.0
}
}
},
{
"type": "object",
"required": [
"and"
],
"properties": {
"and": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CalciteId"
}
}
}
},
{
"type": "object",
"required": [
"seq"
],
"properties": {
"seq": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CalciteId"
}
}
}
},
{
"type": [
"object",
"null"
]
}
]
}Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CalciteId
impl<'de> Deserialize<'de> for CalciteId
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
Auto Trait Implementations§
impl Freeze for CalciteId
impl RefUnwindSafe for CalciteId
impl Send for CalciteId
impl Sync for CalciteId
impl Unpin for CalciteId
impl UnwindSafe for CalciteId
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