pub struct CustomVariable {
pub index: Option<i64>,
pub kind: Option<String>,
pub value: Option<String>,
}Expand description
Custom variable.
This type is not used in any activity, and only used as part of another schema.
Fields§
§index: Option<i64>The index of the custom variable.
kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “dfareporting#customVariable”.
value: Option<String>The value of the custom variable. The length of string must not exceed 50 characters.
Trait Implementations§
Source§impl Clone for CustomVariable
impl Clone for CustomVariable
Source§fn clone(&self) -> CustomVariable
fn clone(&self) -> CustomVariable
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 CustomVariable
impl Debug for CustomVariable
Source§impl Default for CustomVariable
impl Default for CustomVariable
Source§fn default() -> CustomVariable
fn default() -> CustomVariable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomVariable
impl<'de> Deserialize<'de> for CustomVariable
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 CustomVariable
impl Serialize for CustomVariable
impl Part for CustomVariable
Auto Trait Implementations§
impl Freeze for CustomVariable
impl RefUnwindSafe for CustomVariable
impl Send for CustomVariable
impl Sync for CustomVariable
impl Unpin for CustomVariable
impl UnwindSafe for CustomVariable
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