pub struct EnvVarDef {
pub type: Option<EnvVarType>,
pub default: Option<EnvDefault>,
pub description: Option<String>,
}Expand description
A documented environment variable.
Fields§
§type: Option<EnvVarType>Value type: string (default), int, float, or bool.
default: Option<EnvDefault>Default value used when the variable is not set in the dataflow.
description: Option<String>Human-readable description.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EnvVarDef
impl<'de> Deserialize<'de> for EnvVarDef
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
Source§impl JsonSchema for EnvVarDef
impl JsonSchema for EnvVarDef
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for EnvVarDef
impl RefUnwindSafe for EnvVarDef
impl Send for EnvVarDef
impl Sync for EnvVarDef
impl Unpin for EnvVarDef
impl UnsafeUnpin for EnvVarDef
impl UnwindSafe for EnvVarDef
Blanket Implementations§
impl<T> Allocation for T
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