Trait rspack_util::MergeFrom

source ·
pub trait MergeFrom: Clone {
    // Required method
    fn merge_from(self, other: &Self) -> Self;
}

Required Methods§

source

fn merge_from(self, other: &Self) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl MergeFrom for bool

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for i8

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for i16

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for i32

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for i64

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for i128

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for u8

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for u16

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for u32

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for u64

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for u128

source§

fn merge_from(self, other: &Self) -> Self

source§

impl MergeFrom for String

source§

fn merge_from(self, other: &Self) -> Self

source§

impl<T: MergeFrom> MergeFrom for Option<T>

source§

fn merge_from(self, other: &Self) -> Self

source§

impl<T: MergeFrom> MergeFrom for Vec<T>

source§

fn merge_from(self, other: &Self) -> Self

Implementors§