pub struct AdHocInputConfig {
pub name: String,
}
Expand description
Configuration for inserting data with ad-hoc queries
An ad-hoc input adapters cannot be usefully configured as part of pipeline
configuration. Instead, use ad-hoc queries through the UI, the REST API, or
the fda
command-line tool.
JSON schema
{
"description": "Configuration for inserting data with ad-hoc queries\n\nAn ad-hoc input adapters cannot be usefully configured as part of pipeline\nconfiguration. Instead, use ad-hoc queries through the UI, the REST API, or\nthe `fda` command-line tool.",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"description": "Autogenerated name.",
"type": "string"
}
}
}
Fields§
§name: String
Autogenerated name.
Implementations§
Source§impl AdHocInputConfig
impl AdHocInputConfig
pub fn builder() -> AdHocInputConfig
Trait Implementations§
Source§impl Clone for AdHocInputConfig
impl Clone for AdHocInputConfig
Source§fn clone(&self) -> AdHocInputConfig
fn clone(&self) -> AdHocInputConfig
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 AdHocInputConfig
impl Debug for AdHocInputConfig
Source§impl<'de> Deserialize<'de> for AdHocInputConfig
impl<'de> Deserialize<'de> for AdHocInputConfig
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 From<&AdHocInputConfig> for AdHocInputConfig
impl From<&AdHocInputConfig> for AdHocInputConfig
Source§fn from(value: &AdHocInputConfig) -> Self
fn from(value: &AdHocInputConfig) -> Self
Converts to this type from the input type.
Source§impl From<AdHocInputConfig> for AdHocInputConfig
impl From<AdHocInputConfig> for AdHocInputConfig
Source§fn from(value: AdHocInputConfig) -> Self
fn from(value: AdHocInputConfig) -> Self
Converts to this type from the input type.
Source§impl Serialize for AdHocInputConfig
impl Serialize for AdHocInputConfig
Source§impl TryFrom<AdHocInputConfig> for AdHocInputConfig
impl TryFrom<AdHocInputConfig> for AdHocInputConfig
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AdHocInputConfig) -> Result<Self, ConversionError>
fn try_from(value: AdHocInputConfig) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AdHocInputConfig
impl RefUnwindSafe for AdHocInputConfig
impl Send for AdHocInputConfig
impl Sync for AdHocInputConfig
impl Unpin for AdHocInputConfig
impl UnwindSafe for AdHocInputConfig
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