#[non_exhaustive]pub struct FieldOptions {
pub kind: Option<FieldKind>,
pub cardinality: Option<Cardinality>,
pub classification: Option<Classification>,
pub metric: Option<MetricSpec>,
}Expand description
Decoded (obs.v1.field) payload.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.kind: Option<FieldKind>Field role.
cardinality: Option<Cardinality>Cardinality cap.
classification: Option<Classification>PII / SECRET classification.
metric: Option<MetricSpec>Metric spec when kind = MEASUREMENT.
Trait Implementations§
Source§impl Clone for FieldOptions
impl Clone for FieldOptions
Source§fn clone(&self) -> FieldOptions
fn clone(&self) -> FieldOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FieldOptions
impl Debug for FieldOptions
Source§impl Default for FieldOptions
impl Default for FieldOptions
Source§fn default() -> FieldOptions
fn default() -> FieldOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FieldOptions
impl RefUnwindSafe for FieldOptions
impl Send for FieldOptions
impl Sync for FieldOptions
impl Unpin for FieldOptions
impl UnsafeUnpin for FieldOptions
impl UnwindSafe for FieldOptions
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