pub struct DeltaEntry {
pub format_version: u8,
pub cert_bytes: Vec<u8>,
pub blob: Vec<u8>,
}Expand description
A delta record: format version, EigenDA certificate bytes, and raw blob.
Fields§
§format_version: u8On-disk format version. Current: [DELTA_FORMAT_V1].
cert_bytes: Vec<u8>Serialized EigenDA dispersal certificate.
blob: Vec<u8>Raw delta blob.
Trait Implementations§
Source§impl Debug for DeltaEntry
impl Debug for DeltaEntry
Source§impl<'de> Deserialize<'de> for DeltaEntry
impl<'de> Deserialize<'de> for DeltaEntry
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
Auto Trait Implementations§
impl Freeze for DeltaEntry
impl RefUnwindSafe for DeltaEntry
impl Send for DeltaEntry
impl Sync for DeltaEntry
impl Unpin for DeltaEntry
impl UnsafeUnpin for DeltaEntry
impl UnwindSafe for DeltaEntry
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