pub trait ReplicaContext {
    fn get_comp_constructions<R: Read>(
        &mut self,
        network_id: u16,
        lot: Lot,
        config: &Option<LuNameValue>
    ) -> Vec<fn(_: &mut BEBitReader<R>) -> Res<Box<dyn ComponentConstruction>>>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
; fn get_comp_serializations<R: Read>(
        &mut self,
        network_id: u16
    ) -> Vec<fn(_: &mut BEBitReader<R>) -> Res<Box<dyn ComponentSerialization>>>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
; }

Required Methods

Implementors