pub struct OutputResponse {
pub version: FixedBytes<32>,
pub output_root: FixedBytes<32>,
pub block_ref: L2BlockInfo,
pub withdrawal_storage_root: FixedBytes<32>,
pub state_root: FixedBytes<32>,
pub sync_status: SyncStatus,
}Expand description
An output response for Optimism Rollup.
Fields§
§version: FixedBytes<32>The output version.
output_root: FixedBytes<32>The output root hash.
block_ref: L2BlockInfoA reference to the L2 block.
withdrawal_storage_root: FixedBytes<32>The withdrawal storage root.
state_root: FixedBytes<32>The state root.
sync_status: SyncStatusThe status of the node sync.
Trait Implementations§
Source§impl Clone for OutputResponse
impl Clone for OutputResponse
Source§fn clone(&self) -> OutputResponse
fn clone(&self) -> OutputResponse
Returns a copy 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 moreSource§impl Debug for OutputResponse
impl Debug for OutputResponse
Source§impl PartialEq for OutputResponse
impl PartialEq for OutputResponse
impl Eq for OutputResponse
impl StructuralPartialEq for OutputResponse
Auto Trait Implementations§
impl Freeze for OutputResponse
impl RefUnwindSafe for OutputResponse
impl Send for OutputResponse
impl Sync for OutputResponse
impl Unpin for OutputResponse
impl UnwindSafe for OutputResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more