pub struct CodeScanningAlertFixedAlertInstancesItemLocation {
pub end_column: Option<i64>,
pub end_line: Option<i64>,
pub path: Option<String>,
pub start_column: Option<i64>,
pub start_line: Option<i64>,
}
Expand description
CodeScanningAlertFixedAlertInstancesItemLocation
JSON schema
{
"type": "object",
"properties": {
"end_column": {
"type": "integer"
},
"end_line": {
"type": "integer"
},
"path": {
"type": "string"
},
"start_column": {
"type": "integer"
},
"start_line": {
"type": "integer"
}
},
"additionalProperties": false
}
Fields§
§end_column: Option<i64>
§end_line: Option<i64>
§path: Option<String>
§start_column: Option<i64>
§start_line: Option<i64>
Implementations§
Trait Implementations§
Source§impl Clone for CodeScanningAlertFixedAlertInstancesItemLocation
impl Clone for CodeScanningAlertFixedAlertInstancesItemLocation
Source§fn clone(&self) -> CodeScanningAlertFixedAlertInstancesItemLocation
fn clone(&self) -> CodeScanningAlertFixedAlertInstancesItemLocation
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<'de> Deserialize<'de> for CodeScanningAlertFixedAlertInstancesItemLocation
impl<'de> Deserialize<'de> for CodeScanningAlertFixedAlertInstancesItemLocation
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
Source§impl From<&CodeScanningAlertFixedAlertInstancesItemLocation> for CodeScanningAlertFixedAlertInstancesItemLocation
impl From<&CodeScanningAlertFixedAlertInstancesItemLocation> for CodeScanningAlertFixedAlertInstancesItemLocation
Source§fn from(value: &CodeScanningAlertFixedAlertInstancesItemLocation) -> Self
fn from(value: &CodeScanningAlertFixedAlertInstancesItemLocation) -> Self
Converts to this type from the input type.
Source§impl From<CodeScanningAlertFixedAlertInstancesItemLocation> for CodeScanningAlertFixedAlertInstancesItemLocation
impl From<CodeScanningAlertFixedAlertInstancesItemLocation> for CodeScanningAlertFixedAlertInstancesItemLocation
Source§fn from(value: CodeScanningAlertFixedAlertInstancesItemLocation) -> Self
fn from(value: CodeScanningAlertFixedAlertInstancesItemLocation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CodeScanningAlertFixedAlertInstancesItemLocation
impl RefUnwindSafe for CodeScanningAlertFixedAlertInstancesItemLocation
impl Send for CodeScanningAlertFixedAlertInstancesItemLocation
impl Sync for CodeScanningAlertFixedAlertInstancesItemLocation
impl Unpin for CodeScanningAlertFixedAlertInstancesItemLocation
impl UnwindSafe for CodeScanningAlertFixedAlertInstancesItemLocation
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