pub struct MergeLayer {
pub path: ValuesPath,
pub transform: MergeLayerTransform,
}Expand description
One ordered merge input paired with the transform applied before merging.
Fields§
§path: ValuesPathValues path supplying this layer.
transform: MergeLayerTransformStructural transform applied before the merge reads the layer.
Trait Implementations§
Source§impl Clone for MergeLayer
impl Clone for MergeLayer
Source§fn clone(&self) -> MergeLayer
fn clone(&self) -> MergeLayer
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 MergeLayer
impl Debug for MergeLayer
Source§impl<'de> Deserialize<'de> for MergeLayer
impl<'de> Deserialize<'de> for MergeLayer
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
impl Eq for MergeLayer
Source§impl Hash for MergeLayer
impl Hash for MergeLayer
Source§impl Ord for MergeLayer
impl Ord for MergeLayer
Source§fn cmp(&self, other: &MergeLayer) -> Ordering
fn cmp(&self, other: &MergeLayer) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for MergeLayer
impl PartialEq for MergeLayer
Source§impl PartialOrd for MergeLayer
impl PartialOrd for MergeLayer
Source§impl Serialize for MergeLayer
impl Serialize for MergeLayer
impl StructuralPartialEq for MergeLayer
Auto Trait Implementations§
impl Freeze for MergeLayer
impl RefUnwindSafe for MergeLayer
impl Send for MergeLayer
impl Sync for MergeLayer
impl Unpin for MergeLayer
impl UnsafeUnpin for MergeLayer
impl UnwindSafe for MergeLayer
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