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§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<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