pub struct OutputResponse {
pub version: B256,
pub output_root: B256,
pub block_ref: L2BlockInfo,
pub withdrawal_storage_root: B256,
pub state_root: B256,
pub sync_status: SyncStatus,
}Expand description
An output response for Optimism Rollup.
Fields§
§version: B256The output version.
output_root: B256The output root hash.
block_ref: L2BlockInfoA reference to the L2 block.
withdrawal_storage_root: B256The withdrawal storage root.
state_root: B256The state root.
sync_status: SyncStatusThe status of the node sync.
Implementations§
Source§impl OutputResponse
impl OutputResponse
Sourcepub fn from_v0(
v0: OutputRoot,
sync_status: SyncStatus,
block_ref: L2BlockInfo,
) -> Self
pub fn from_v0( v0: OutputRoot, sync_status: SyncStatus, block_ref: L2BlockInfo, ) -> Self
Builds an OutputResponse from its parts.
Trait Implementations§
Source§impl Clone for OutputResponse
impl Clone for OutputResponse
Source§fn clone(&self) -> OutputResponse
fn clone(&self) -> OutputResponse
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 moreSource§impl Debug for OutputResponse
impl Debug for OutputResponse
Source§impl<'de> Deserialize<'de> for OutputResponse
impl<'de> Deserialize<'de> for OutputResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OutputResponse
impl PartialEq for OutputResponse
Source§impl Serialize for OutputResponse
impl Serialize 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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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