Trait CrdtRead

Source
pub trait CrdtRead<R: CrdtReader> {
    // Required method
    fn read(reader: &mut R) -> JwstCodecResult<Self>
       where Self: Sized;
}

Required Methods§

Source

fn read(reader: &mut R) -> JwstCodecResult<Self>
where Self: Sized,

Implementations on Foreign Types§

Source§

impl<R: CrdtReader> CrdtRead<R> for Range<u64>

Source§

fn read(decoder: &mut R) -> JwstCodecResult<Self>

Implementors§