pub struct InputValue {
pub name: String,
pub description: Option<String>,
pub type_: TypeRef,
pub default_value: Option<String>,
}
Fields§
§name: String
§description: Option<String>
§type_: TypeRef
§default_value: Option<String>
Trait Implementations§
source§impl Clone for InputValue
impl Clone for InputValue
source§fn clone(&self) -> InputValue
fn clone(&self) -> InputValue
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 Debug for InputValue
impl Debug for InputValue
source§impl<'de> Deserialize<'de> for InputValue
impl<'de> Deserialize<'de> for InputValue
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