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