pub struct DynamicTemplate {
pub path_match: Option<String>,
pub path_unmatch: Option<String>,
pub unmatch: Option<String>,
pub match: Option<String>,
pub match_mapping_type: Option<String>,
pub mapping: Option<Property>,
pub match_pattern: Option<String>,
}Fields§
§path_match: Option<String>§path_unmatch: Option<String>§unmatch: Option<String>§match: Option<String>§match_mapping_type: Option<String>§mapping: Option<Property>§match_pattern: Option<String>Implementations§
Source§impl DynamicTemplate
impl DynamicTemplate
pub fn new() -> DynamicTemplate
Trait Implementations§
Source§impl Clone for DynamicTemplate
impl Clone for DynamicTemplate
Source§fn clone(&self) -> DynamicTemplate
fn clone(&self) -> DynamicTemplate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DynamicTemplate
impl Debug for DynamicTemplate
Source§impl Default for DynamicTemplate
impl Default for DynamicTemplate
Source§fn default() -> DynamicTemplate
fn default() -> DynamicTemplate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DynamicTemplate
impl<'de> Deserialize<'de> for DynamicTemplate
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 PartialEq for DynamicTemplate
impl PartialEq for DynamicTemplate
Source§fn eq(&self, other: &DynamicTemplate) -> bool
fn eq(&self, other: &DynamicTemplate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DynamicTemplate
impl Serialize for DynamicTemplate
impl StructuralPartialEq for DynamicTemplate
Auto Trait Implementations§
impl Freeze for DynamicTemplate
impl RefUnwindSafe for DynamicTemplate
impl Send for DynamicTemplate
impl Sync for DynamicTemplate
impl Unpin for DynamicTemplate
impl UnsafeUnpin for DynamicTemplate
impl UnwindSafe for DynamicTemplate
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