Trait pravega_client::sync::synchronizer::ValueData

source ·
pub trait ValueData: ValueSerialize + ValueClone + Debug { }
Expand description

The trait bound for the ValueData

Trait Implementations§

source§

impl Clone for Box<dyn ValueData>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementors§

source§

impl<T> ValueData for T
where T: 'static + Serialize + DeserializeOwned + Clone + Debug,