pub struct Operand {
pub input: Option<u64>,
pub name: Option<String>,
}Expand description
Operand
JSON schema
{
"type": "object",
"properties": {
"input": {
"type": [
"integer",
"null"
],
"minimum": 0.0
},
"name": {
"type": [
"string",
"null"
]
}
},
"additionalProperties": {}
}Fields§
§input: Option<u64>§name: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Operand
impl<'de> Deserialize<'de> for Operand
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 Operand
impl RefUnwindSafe for Operand
impl Send for Operand
impl Sync for Operand
impl Unpin for Operand
impl UnwindSafe for Operand
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