pub struct ScanData {
pub data: Option<VisualizationData>,
pub end_time: Option<DateTime<Utc>>,
pub start_time: Option<DateTime<Utc>>,
}
Expand description
ScanData contains Cloud Key Visualizer scan data used by the caller to construct a visualization.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data: Option<VisualizationData>
Cloud Key Visualizer scan data. The range of time this information covers is captured via the above time range fields. Note, this field is not available to the ListScans method.
end_time: Option<DateTime<Utc>>
The upper bound for when the contained data is defined.
start_time: Option<DateTime<Utc>>
A range of time (inclusive) for when the contained data is defined. The lower bound for when the contained data is defined.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ScanData
impl<'de> Deserialize<'de> for ScanData
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
impl Part for ScanData
Auto Trait Implementations§
impl Freeze for ScanData
impl RefUnwindSafe for ScanData
impl Send for ScanData
impl Sync for ScanData
impl Unpin for ScanData
impl UnwindSafe for ScanData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more