pub trait BlueprintPartitionOffset: Copy + Into<PartitionOffset> {
    // Provided methods
    fn as_partition_offset(self) -> PartitionOffset { ... }
    fn as_main_partition(self) -> PartitionNumber { ... }
    fn as_partition(self, base: PartitionNumber) -> PartitionNumber { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§