pub struct GoogleCloudChannelV1Value {
pub bool_value: Option<bool>,
pub double_value: Option<f64>,
pub int64_value: Option<i64>,
pub proto_value: Option<HashMap<String, Value>>,
pub string_value: Option<String>,
}Expand description
Data type and value of a parameter.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bool_value: Option<bool>Represents a boolean value.
double_value: Option<f64>Represents a double value.
int64_value: Option<i64>Represents an int64 value.
proto_value: Option<HashMap<String, Value>>Represents an ‘Any’ proto value.
string_value: Option<String>Represents a string value.
Trait Implementations§
Source§impl Clone for GoogleCloudChannelV1Value
impl Clone for GoogleCloudChannelV1Value
Source§fn clone(&self) -> GoogleCloudChannelV1Value
fn clone(&self) -> GoogleCloudChannelV1Value
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 GoogleCloudChannelV1Value
impl Debug for GoogleCloudChannelV1Value
Source§impl Default for GoogleCloudChannelV1Value
impl Default for GoogleCloudChannelV1Value
Source§fn default() -> GoogleCloudChannelV1Value
fn default() -> GoogleCloudChannelV1Value
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudChannelV1Value
impl<'de> Deserialize<'de> for GoogleCloudChannelV1Value
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 GoogleCloudChannelV1Value
Auto Trait Implementations§
impl Freeze for GoogleCloudChannelV1Value
impl RefUnwindSafe for GoogleCloudChannelV1Value
impl Send for GoogleCloudChannelV1Value
impl Sync for GoogleCloudChannelV1Value
impl Unpin for GoogleCloudChannelV1Value
impl UnwindSafe for GoogleCloudChannelV1Value
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