pub struct PipePresetParameterInput {
pub default: Option<String>,
pub description: Option<String>,
pub label: Option<String>,
pub name: String,
pub required: Option<bool>,
pub secret: Option<bool>,
}Expand description
PipePresetParameterInput
JSON schema
{
"type": "object",
"required": [
"name"
],
"properties": {
"default": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
"null"
]
},
"label": {
"type": [
"string",
"null"
]
},
"name": {
"type": "string"
},
"required": {
"type": "boolean"
},
"secret": {
"type": "boolean"
}
}
}Fields§
§default: Option<String>§description: Option<String>§label: Option<String>§name: String§required: Option<bool>§secret: Option<bool>Trait Implementations§
Source§impl Clone for PipePresetParameterInput
impl Clone for PipePresetParameterInput
Source§fn clone(&self) -> PipePresetParameterInput
fn clone(&self) -> PipePresetParameterInput
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 PipePresetParameterInput
impl Debug for PipePresetParameterInput
Source§impl<'de> Deserialize<'de> for PipePresetParameterInput
impl<'de> Deserialize<'de> for PipePresetParameterInput
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
Auto Trait Implementations§
impl Freeze for PipePresetParameterInput
impl RefUnwindSafe for PipePresetParameterInput
impl Send for PipePresetParameterInput
impl Sync for PipePresetParameterInput
impl Unpin for PipePresetParameterInput
impl UnsafeUnpin for PipePresetParameterInput
impl UnwindSafe for PipePresetParameterInput
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