pub struct UsageReportParameters {
pub msg_value: Option<Vec<HashMap<String, String>>>,
pub datetime_value: Option<String>,
pub name: Option<String>,
pub string_value: Option<String>,
pub bool_value: Option<bool>,
pub int_value: Option<String>,
}Expand description
Parameter value pairs for various applications.
This type is not used in any activity, and only used as part of another schema.
Fields§
§msg_value: Option<Vec<HashMap<String, String>>>Nested message value of the parameter.
datetime_value: Option<String>RFC 3339 formatted value of the parameter.
name: Option<String>The name of the parameter.
string_value: Option<String>String value of the parameter.
bool_value: Option<bool>Boolean value of the parameter.
int_value: Option<String>Integral value of the parameter.
Trait Implementations§
Source§impl Clone for UsageReportParameters
impl Clone for UsageReportParameters
Source§fn clone(&self) -> UsageReportParameters
fn clone(&self) -> UsageReportParameters
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 Debug for UsageReportParameters
impl Debug for UsageReportParameters
Source§impl Default for UsageReportParameters
impl Default for UsageReportParameters
Source§fn default() -> UsageReportParameters
fn default() -> UsageReportParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UsageReportParameters
impl<'de> Deserialize<'de> for UsageReportParameters
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 Serialize for UsageReportParameters
impl Serialize for UsageReportParameters
impl NestedType for UsageReportParameters
impl Part for UsageReportParameters
Auto Trait Implementations§
impl Freeze for UsageReportParameters
impl RefUnwindSafe for UsageReportParameters
impl Send for UsageReportParameters
impl Sync for UsageReportParameters
impl Unpin for UsageReportParameters
impl UnwindSafe for UsageReportParameters
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> 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