pub struct OperationMapRecord {
pub fields: Vec<String>,
pub operation: String,
pub operation_name: Option<String>,
}Expand description
OperationMapRecord
JSON schema
{
"title": "OperationMapRecord",
"type": "object",
"required": [
"fields",
"operation"
],
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1
},
"operation": {
"type": "string"
},
"operationName": {
"type": "string"
}
},
"additionalProperties": false
}Fields§
§fields: Vec<String>§operation: String§operation_name: Option<String>Trait Implementations§
Source§impl Clone for OperationMapRecord
impl Clone for OperationMapRecord
Source§fn clone(&self) -> OperationMapRecord
fn clone(&self) -> OperationMapRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 OperationMapRecord
impl Debug for OperationMapRecord
Source§impl<'de> Deserialize<'de> for OperationMapRecord
impl<'de> Deserialize<'de> for OperationMapRecord
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 OperationMapRecord
impl RefUnwindSafe for OperationMapRecord
impl Send for OperationMapRecord
impl Sync for OperationMapRecord
impl Unpin for OperationMapRecord
impl UnsafeUnpin for OperationMapRecord
impl UnwindSafe for OperationMapRecord
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