pub struct ParsedInitMessage {
pub chain_id: U256,
pub initial_l1_base_fee: U256,
pub serialized_chain_config: Vec<u8>,
}Expand description
Parsed initialization message from the first L1 message.
Fields§
§chain_id: U256§initial_l1_base_fee: U256§serialized_chain_config: Vec<u8>Serialized chain config JSON bytes (stored in ArbOS state).
Trait Implementations§
Source§impl Clone for ParsedInitMessage
impl Clone for ParsedInitMessage
Source§fn clone(&self) -> ParsedInitMessage
fn clone(&self) -> ParsedInitMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsedInitMessage
impl RefUnwindSafe for ParsedInitMessage
impl Send for ParsedInitMessage
impl Sync for ParsedInitMessage
impl Unpin for ParsedInitMessage
impl UnwindSafe for ParsedInitMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more