op_alloy_protocol/batch/
type.rsuse alloy_rlp::{Decodable, Encodable};
pub const SINGLE_BATCH_TYPE: u8 = 0x00;
pub const SPAN_BATCH_TYPE: u8 = 0x01;
#[derive(Debug, Clone, PartialEq, Eq)]
#[repr(u8)]
pub enum BatchType {
Single = SINGLE_BATCH_TYPE,
Span = SPAN_BATCH_TYPE,
}
impl From<u8> for BatchType {
fn from(val: u8) -> Self {
match val {
SINGLE_BATCH_TYPE => Self::Single,
SPAN_BATCH_TYPE => Self::Span,
_ => panic!("Invalid batch type: {val}"),
}
}
}
impl Encodable for BatchType {
fn encode(&self, out: &mut dyn alloy_rlp::BufMut) {
let val = match self {
Self::Single => SINGLE_BATCH_TYPE,
Self::Span => SPAN_BATCH_TYPE,
};
val.encode(out);
}
}
impl Decodable for BatchType {
fn decode(buf: &mut &[u8]) -> alloy_rlp::Result<Self> {
let val = u8::decode(buf)?;
Ok(Self::from(val))
}
}
#[cfg(test)]
mod test {
use super::*;
use alloc::vec::Vec;
#[test]
fn test_batch_type_rlp_roundtrip() {
let batch_type = BatchType::Single;
let mut buf = Vec::new();
batch_type.encode(&mut buf);
let decoded = BatchType::decode(&mut buf.as_slice()).unwrap();
assert_eq!(batch_type, decoded);
}
}