pub struct SignedBidSubmissionV3 {
pub message: BidTrace,
pub execution_payload: ExecutionPayloadV3,
pub blobs_bundle: BlobsBundleV1,
pub signature: BlsSignature,
}
Expand description
Submission for the /relay/v1/builder/blocks
endpoint (Deneb).
Fields§
§message: BidTrace
The BidTrace message associated with the submission.
execution_payload: ExecutionPayloadV3
The execution payload for the submission.
blobs_bundle: BlobsBundleV1
The Deneb block bundle for this bid.
signature: BlsSignature
The signature associated with the submission.
Trait Implementations§
Source§impl Clone for SignedBidSubmissionV3
impl Clone for SignedBidSubmissionV3
Source§fn clone(&self) -> SignedBidSubmissionV3
fn clone(&self) -> SignedBidSubmissionV3
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 SignedBidSubmissionV3
impl Debug for SignedBidSubmissionV3
Source§impl Decode for SignedBidSubmissionV3
impl Decode for SignedBidSubmissionV3
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 SignedBidSubmissionV3
impl<'de> Deserialize<'de> for SignedBidSubmissionV3
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 SignedBidSubmissionV3
impl Encode for SignedBidSubmissionV3
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 SignedBidSubmissionV3
impl PartialEq for SignedBidSubmissionV3
Source§impl Serialize for SignedBidSubmissionV3
impl Serialize for SignedBidSubmissionV3
impl Eq for SignedBidSubmissionV3
impl StructuralPartialEq for SignedBidSubmissionV3
Auto Trait Implementations§
impl !Freeze for SignedBidSubmissionV3
impl RefUnwindSafe for SignedBidSubmissionV3
impl Send for SignedBidSubmissionV3
impl Sync for SignedBidSubmissionV3
impl Unpin for SignedBidSubmissionV3
impl UnwindSafe for SignedBidSubmissionV3
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