usecrate::extension::Signature;/// The signature of the sparse index extension, nothing more than an indicator at this time.
pubconstSIGNATURE: Signature =*b"sdir";/// Serialize the sparse index extension to `out`
pubfnwrite_to(mutout: impl std::io::Write)->Result<(), std::io::Error>{
out.write_all(&SIGNATURE)?;
out.write_all(&0_u32.to_be_bytes())?;Ok(())}