pub struct SignedBidSubmissionV1 {
pub message: BidTrace,
pub execution_payload: ExecutionPayloadV1,
pub signature: BlsSignature,
}
Expand description
Submission for the /relay/v1/builder/blocks
endpoint (Bellatrix).
Fields§
§message: BidTrace
The BidTrace message associated with the submission.
execution_payload: ExecutionPayloadV1
The execution payload for the submission.
signature: BlsSignature
The signature associated with the submission.
Trait Implementations§
source§impl Clone for SignedBidSubmissionV1
impl Clone for SignedBidSubmissionV1
source§fn clone(&self) -> SignedBidSubmissionV1
fn clone(&self) -> SignedBidSubmissionV1
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 SignedBidSubmissionV1
impl Debug for SignedBidSubmissionV1
source§impl Decode for SignedBidSubmissionV1
impl Decode for SignedBidSubmissionV1
source§fn is_ssz_fixed_len() -> bool
fn is_ssz_fixed_len() -> bool
Returns
true
if this object has a fixed-length. Read moresource§fn ssz_fixed_len() -> usize
fn ssz_fixed_len() -> usize
The number of bytes this object occupies in the fixed-length portion of the SSZ bytes. Read more
source§fn from_ssz_bytes(bytes: &[u8]) -> Result<Self, DecodeError>
fn from_ssz_bytes(bytes: &[u8]) -> Result<Self, DecodeError>
source§impl<'de> Deserialize<'de> for SignedBidSubmissionV1
impl<'de> Deserialize<'de> for SignedBidSubmissionV1
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 Encode for SignedBidSubmissionV1
impl Encode for SignedBidSubmissionV1
source§fn is_ssz_fixed_len() -> bool
fn is_ssz_fixed_len() -> bool
Returns
true
if this object has a fixed-length. Read moresource§fn ssz_fixed_len() -> usize
fn ssz_fixed_len() -> usize
The number of bytes this object occupies in the fixed-length portion of the SSZ bytes. Read more
source§fn ssz_bytes_len(&self) -> usize
fn ssz_bytes_len(&self) -> usize
Returns the size (in bytes) when
self
is serialized. Read moresource§impl PartialEq for SignedBidSubmissionV1
impl PartialEq for SignedBidSubmissionV1
source§impl Serialize for SignedBidSubmissionV1
impl Serialize for SignedBidSubmissionV1
impl Eq for SignedBidSubmissionV1
impl StructuralPartialEq for SignedBidSubmissionV1
Auto Trait Implementations§
impl !Freeze for SignedBidSubmissionV1
impl RefUnwindSafe for SignedBidSubmissionV1
impl Send for SignedBidSubmissionV1
impl Sync for SignedBidSubmissionV1
impl Unpin for SignedBidSubmissionV1
impl UnwindSafe for SignedBidSubmissionV1
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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