Struct alloy_eips::eip4844::builder::PartialSidecar
source · pub struct PartialSidecar { /* private fields */ }
Expand description
A builder for creating a BlobTransactionSidecar
.
Implementations§
source§impl PartialSidecar
impl PartialSidecar
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new builder, and push an empty blob to it. This is the default
constructor, and allocates space for 2 blobs (256 KiB). If you want to
preallocate a specific number of blobs, use
PartialSidecar::with_capacity
.
sourcepub fn with_capacity(capacity: usize) -> Self
pub fn with_capacity(capacity: usize) -> Self
Create a new builder, preallocating room for capacity
blobs, and push
an empty blob to it.
sourcepub const fn len(&self) -> usize
pub const fn len(&self) -> usize
Calculate the length of used field elements IN BYTES in the builder.
This is always strictly greater than the number of bytes that have been ingested.
sourcepub fn alloc_fes(&mut self, required_fe: usize)
pub fn alloc_fes(&mut self, required_fe: usize)
Allocate enough space for the required number of new field elements.
sourcepub fn ingest_valid_fe(&mut self, data: WholeFe<'_>)
pub fn ingest_valid_fe(&mut self, data: WholeFe<'_>)
Ingest a field element into the current blobs.
sourcepub fn ingest_partial_fe(&mut self, data: &[u8])
pub fn ingest_partial_fe(&mut self, data: &[u8])
Ingest a partial FE into the current blobs.
§Panics
If the data is >=32 bytes. Or if there are not enough free FEs to encode the data.
Trait Implementations§
source§impl Clone for PartialSidecar
impl Clone for PartialSidecar
source§fn clone(&self) -> PartialSidecar
fn clone(&self) -> PartialSidecar
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 PartialSidecar
impl Debug for PartialSidecar
Auto Trait Implementations§
impl Freeze for PartialSidecar
impl RefUnwindSafe for PartialSidecar
impl Send for PartialSidecar
impl Sync for PartialSidecar
impl Unpin for PartialSidecar
impl UnwindSafe for PartialSidecar
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)