pub struct Continue {
pub documentation: Option<String>,
pub id: i64,
pub node_type: ContinueNodeType,
pub src: SourceLocation,
}
Expand description
Continue
JSON schema
{
"type": "object",
"required": [
"id",
"nodeType",
"src"
],
"properties": {
"documentation": {
"type": "string"
},
"id": {
"type": "integer"
},
"nodeType": {
"enum": [
"Continue"
]
},
"src": {
"$ref": "#/definitions/SourceLocation"
}
},
"additionalProperties": false
}
Fields§
§documentation: Option<String>
§id: i64
§node_type: ContinueNodeType
§src: SourceLocation
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Continue
impl<'de> Deserialize<'de> for Continue
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 Continue
impl RefUnwindSafe for Continue
impl Send for Continue
impl Sync for Continue
impl Unpin for Continue
impl UnwindSafe for Continue
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