downstream 1.21.5

downstream provides efficient, constant-space implementations of stream curation algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
#[allow(non_snake_case)]
pub trait AssignStorageSiteTrait {
    fn _assign_storage_site<Uint: crate::_auxlib::UnsignedTrait>(S: Uint, T: Uint) -> Uint;
    fn assign_storage_site<Uint: crate::_auxlib::UnsignedTrait>(S: Uint, T: Uint) -> Option<Uint>;
}

#[allow(non_snake_case)]
pub trait HasIngestCapacityTrait {
    fn has_ingest_capacity<Uint: crate::_auxlib::UnsignedTrait>(S: Uint, T: Uint) -> bool;
}