usealloy_primitives::B256;/// A parsed executing message extracted from a log emitted by the
/// `CrossL2Inbox` contract on an L2 chain.
#[derive(Debug, Clone, PartialEq, Eq)]pubstructExecutingMessage{/// The chain ID where the message was observed.
pubchain_id:u64,
/// The block number that contained the log.
pubblock_number:u64,
/// The log index within the block.
publog_index:u32,
/// The timestamp of the block.
pubtimestamp:u64,
/// A unique hash identifying the log (based on payload and origin).
pubhash: B256,
}