pub struct GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo {
pub average: Option<f64>,
pub max: Option<i64>,
pub min: Option<i64>,
pub quartiles: Option<Vec<i64>>,
pub standard_deviation: Option<f64>,
}
Expand description
The profile information for an integer type field.
This type is not used in any activity, and only used as part of another schema.
Fields§
§average: Option<f64>
Average of non-null values in the scanned data. NaN, if the field has a NaN.
max: Option<i64>
Maximum of non-null values in the scanned data. NaN, if the field has a NaN.
min: Option<i64>
Minimum of non-null values in the scanned data. NaN, if the field has a NaN.
quartiles: Option<Vec<i64>>
A quartile divides the number of data points into four parts, or quarters, of more-or-less equal size. Three main quartiles used are: The first quartile (Q1) splits off the lowest 25% of data from the highest 75%. It is also known as the lower or 25th empirical quartile, as 25% of the data is below this point. The second quartile (Q2) is the median of a data set. So, 50% of the data lies below this point. The third quartile (Q3) splits off the highest 25% of data from the lowest 75%. It is known as the upper or 75th empirical quartile, as 75% of the data lies below this point. Here, the quartiles is provided as an ordered list of approximate quartile values for the scanned data, occurring in order Q1, median, Q3.
standard_deviation: Option<f64>
Standard deviation of non-null values in the scanned data. NaN, if the field has a NaN.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl Clone for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
Source§fn clone(
&self,
) -> GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
fn clone( &self, ) -> GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl Default for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
Source§fn default() -> GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
fn default() -> GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
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>,
Source§impl Serialize for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl Serialize for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl Part for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl RefUnwindSafe for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl Send for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl Sync for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl Unpin for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
impl UnwindSafe for GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
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
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>
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>
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