#[non_exhaustive]pub struct SdkConfigurationProperty {
    pub name: Option<String>,
    pub friendly_name: Option<String>,
    pub description: Option<String>,
    pub required: bool,
    pub default_value: Option<String>,
}Expand description
A configuration property of an SDK type.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of a an SdkType configuration property.
friendly_name: Option<String>The user-friendly name of an SdkType configuration property.
description: Option<String>The description of an SdkType configuration property.
required: boolA boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (true) or not (false).
default_value: Option<String>The default value of an SdkType configuration property.
Implementations§
source§impl SdkConfigurationProperty
 
impl SdkConfigurationProperty
sourcepub fn friendly_name(&self) -> Option<&str>
 
pub fn friendly_name(&self) -> Option<&str>
The user-friendly name of an SdkType configuration property.
sourcepub fn description(&self) -> Option<&str>
 
pub fn description(&self) -> Option<&str>
The description of an SdkType configuration property.
sourcepub fn required(&self) -> bool
 
pub fn required(&self) -> bool
A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (true) or not (false).
sourcepub fn default_value(&self) -> Option<&str>
 
pub fn default_value(&self) -> Option<&str>
The default value of an SdkType configuration property.
source§impl SdkConfigurationProperty
 
impl SdkConfigurationProperty
sourcepub fn builder() -> SdkConfigurationPropertyBuilder
 
pub fn builder() -> SdkConfigurationPropertyBuilder
Creates a new builder-style object to manufacture SdkConfigurationProperty.
Trait Implementations§
source§impl Clone for SdkConfigurationProperty
 
impl Clone for SdkConfigurationProperty
source§fn clone(&self) -> SdkConfigurationProperty
 
fn clone(&self) -> SdkConfigurationProperty
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SdkConfigurationProperty
 
impl Debug for SdkConfigurationProperty
source§impl PartialEq for SdkConfigurationProperty
 
impl PartialEq for SdkConfigurationProperty
source§fn eq(&self, other: &SdkConfigurationProperty) -> bool
 
fn eq(&self, other: &SdkConfigurationProperty) -> bool
self and other values to be equal, and is used
by ==.