#[non_exhaustive]pub struct ComponentParameterDetail {
pub name: Option<String>,
pub type: Option<String>,
pub default_value: Option<Vec<String>>,
pub description: Option<String>,
}
Expand description
Defines a parameter that is used to provide configuration details for the component.
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 this input parameter.
type: Option<String>
The type of input this parameter provides. The currently supported value is "string".
default_value: Option<Vec<String>>
The default value of this parameter if no input is provided.
description: Option<String>
Describes this parameter.
Implementations
The type of input this parameter provides. The currently supported value is "string".
The default value of this parameter if no input is provided.
Describes this parameter.
Creates a new builder-style object to manufacture ComponentParameterDetail
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ComponentParameterDetail
impl Send for ComponentParameterDetail
impl Sync for ComponentParameterDetail
impl Unpin for ComponentParameterDetail
impl UnwindSafe for ComponentParameterDetail
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more