Struct aws_sdk_securityhub::types::Range
source · #[non_exhaustive]pub struct Range {
pub start: Option<i64>,
pub end: Option<i64>,
pub start_column: Option<i64>,
}
Expand description
Identifies where the sensitive data begins and ends.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.start: Option<i64>
The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.
end: Option<i64>
The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.
start_column: Option<i64>
In the line where the sensitive data starts, the column within the line where the sensitive data starts.
Implementations§
source§impl Range
impl Range
sourcepub fn start(&self) -> Option<i64>
pub fn start(&self) -> Option<i64>
The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.
sourcepub fn end(&self) -> Option<i64>
pub fn end(&self) -> Option<i64>
The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.
sourcepub fn start_column(&self) -> Option<i64>
pub fn start_column(&self) -> Option<i64>
In the line where the sensitive data starts, the column within the line where the sensitive data starts.