pub struct ExecutingDescriptor {
pub timestamp: u64,
pub timeout: Option<u64>,
pub chain_id: Option<ChainId>,
}Expand description
An ExecutingDescriptor is a part of the payload to supervisor_checkAccessList
Spec: https://github.com/ethereum-optimism/specs/blob/main/specs/interop/supervisor.md#executingdescriptor
Fields§
§timestamp: u64The timestamp used to enforce timestamp invariant
timeout: Option<u64>The timeout that requests verification to still hold at timestamp+timeout
(message expiry may drop previously valid messages).
chain_id: Option<ChainId>Chain ID of the chain that the message was executed on.
Implementations§
Trait Implementations§
Source§impl Clone for ExecutingDescriptor
impl Clone for ExecutingDescriptor
Source§fn clone(&self) -> ExecutingDescriptor
fn clone(&self) -> ExecutingDescriptor
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 ExecutingDescriptor
impl Debug for ExecutingDescriptor
Source§impl Default for ExecutingDescriptor
impl Default for ExecutingDescriptor
Source§fn default() -> ExecutingDescriptor
fn default() -> ExecutingDescriptor
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExecutingDescriptor
impl PartialEq for ExecutingDescriptor
impl Eq for ExecutingDescriptor
impl StructuralPartialEq for ExecutingDescriptor
Auto Trait Implementations§
impl Freeze for ExecutingDescriptor
impl RefUnwindSafe for ExecutingDescriptor
impl Send for ExecutingDescriptor
impl Sync for ExecutingDescriptor
impl Unpin for ExecutingDescriptor
impl UnwindSafe for ExecutingDescriptor
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