pub type PartitionsManagerGetBlockInfoResult = Result<(u64, u32), i32>;
enum PartitionsManagerGetBlockInfoResult { Ok((u64, u32)), Err(i32), }
Contains the success value
Contains the error value