pub struct OutputResponse {
pub version: FixedBytes<32>,
pub output_root: FixedBytes<32>,
pub block_ref: L2BlockRef,
pub withdrawal_storage_root: FixedBytes<32>,
pub state_root: FixedBytes<32>,
pub sync_status: SyncStatus,
}
Available on crate feature
rpc-types
only.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: L2BlockRef
A reference to the L2 block.
withdrawal_storage_root: FixedBytes<32>
The withdrawal storage root.
state_root: FixedBytes<32>
The state root.
sync_status: SyncStatus
The 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<'de> Deserialize<'de> for OutputResponse
impl<'de> Deserialize<'de> for OutputResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutputResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutputResponse, <__D as Deserializer<'de>>::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
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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<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