Trait mz_catalog::memory::objects::UpdateFrom

source ·
pub trait UpdateFrom<T>: From<T> {
    // Required method
    fn update_from(&mut self, from: T);
}
Expand description

Used to update self from the input value while consuming the input value.

Required Methods§

source

fn update_from(&mut self, from: T)

Object Safety§

This trait is not object safe.

Implementors§