pub struct PipeRecipeDef {
pub entity_type_id: Option<String>,
pub prefix: String,
pub schema_id: Option<String>,
pub schemas: Vec<String>,
pub type_: PipeRecipeType,
}Expand description
PipeRecipeDef
JSON schema
{
"type": "object",
"required": [
"prefix",
"type"
],
"properties": {
"entity_type_id": {
"type": [
"string",
"null"
]
},
"prefix": {
"type": "string"
},
"schema_id": {
"type": "string"
},
"schemas": {
"type": "array",
"items": {
"type": "string"
}
},
"type": {
"$ref": "#/components/schemas/PipeRecipeType"
}
}
}Fields§
§entity_type_id: Option<String>§prefix: String§schema_id: Option<String>§schemas: Vec<String>§type_: PipeRecipeTypeTrait Implementations§
Source§impl Clone for PipeRecipeDef
impl Clone for PipeRecipeDef
Source§fn clone(&self) -> PipeRecipeDef
fn clone(&self) -> PipeRecipeDef
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 PipeRecipeDef
impl Debug for PipeRecipeDef
Source§impl<'de> Deserialize<'de> for PipeRecipeDef
impl<'de> Deserialize<'de> for PipeRecipeDef
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 PipeRecipeDef
impl RefUnwindSafe for PipeRecipeDef
impl Send for PipeRecipeDef
impl Sync for PipeRecipeDef
impl Unpin for PipeRecipeDef
impl UnsafeUnpin for PipeRecipeDef
impl UnwindSafe for PipeRecipeDef
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