#[non_exhaustive]pub struct ConformancePackInputParameter { /* private fields */ }Expand description
Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters.
Implementations§
source§impl ConformancePackInputParameter
impl ConformancePackInputParameter
sourcepub fn parameter_name(&self) -> Option<&str>
pub fn parameter_name(&self) -> Option<&str>
One part of a key-value pair.
sourcepub fn parameter_value(&self) -> Option<&str>
pub fn parameter_value(&self) -> Option<&str>
Another part of the key-value pair.
source§impl ConformancePackInputParameter
impl ConformancePackInputParameter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConformancePackInputParameter.
Trait Implementations§
source§impl Clone for ConformancePackInputParameter
impl Clone for ConformancePackInputParameter
source§fn clone(&self) -> ConformancePackInputParameter
fn clone(&self) -> ConformancePackInputParameter
Returns a copy 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 PartialEq<ConformancePackInputParameter> for ConformancePackInputParameter
impl PartialEq<ConformancePackInputParameter> for ConformancePackInputParameter
source§fn eq(&self, other: &ConformancePackInputParameter) -> bool
fn eq(&self, other: &ConformancePackInputParameter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.