crate::ix!();
#[derive(Default)]
pub struct Footer {
metaindex_handle: BlockHandle,
index_handle: BlockHandle,
}
pub const FOOTER_ENCODED_LENGTH: usize = 2 * BLOCK_HANDLE_MAX_ENCODED_LENGTH + 8;
impl Footer {
pub fn metaindex_handle(&self) -> &BlockHandle {
todo!();
}
pub fn set_metaindex_handle(&mut self, h: &BlockHandle) {
todo!();
}
pub fn index_handle(&self) -> &BlockHandle {
todo!();
}
pub fn set_index_handle(&mut self, h: &BlockHandle) {
todo!();
}
pub fn encode_to(&self, dst: *mut String) {
todo!();
}
pub fn decode_from(&mut self,
input: *mut Slice) -> Status {
todo!();
}
}