#[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
sourceimpl 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.
sourceimpl ConformancePackInputParameter
impl ConformancePackInputParameter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConformancePackInputParameter.
Trait Implementations
sourceimpl Clone for ConformancePackInputParameter
impl Clone for ConformancePackInputParameter
sourcefn clone(&self) -> ConformancePackInputParameter
fn clone(&self) -> ConformancePackInputParameter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ConformancePackInputParameter
impl Debug for ConformancePackInputParameter
sourceimpl PartialEq<ConformancePackInputParameter> for ConformancePackInputParameter
impl PartialEq<ConformancePackInputParameter> for ConformancePackInputParameter
sourcefn eq(&self, other: &ConformancePackInputParameter) -> bool
fn eq(&self, other: &ConformancePackInputParameter) -> bool
impl StructuralPartialEq for ConformancePackInputParameter
Auto Trait Implementations
impl RefUnwindSafe for ConformancePackInputParameter
impl Send for ConformancePackInputParameter
impl Sync for ConformancePackInputParameter
impl Unpin for ConformancePackInputParameter
impl UnwindSafe for ConformancePackInputParameter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more