[][src]Struct grin_chain::store::Batch

pub struct Batch<'a> { /* fields omitted */ }

An atomic batch in which all changes can be committed all at once or discarded on error.

Methods

impl<'a> Batch<'a>[src]

pub fn head(&self) -> Result<Tip, Error>[src]

pub fn tail(&self) -> Result<Tip, Error>[src]

pub fn head_header(&self) -> Result<BlockHeader, Error>[src]

Header of the block at the head of the block chain (not the same thing as header_head).

pub fn header_head(&self) -> Result<Tip, Error>[src]

Head of the header chain (not the same thing as head_header).

pub fn get_sync_head(&self) -> Result<Tip, Error>[src]

pub fn save_head(&self, t: &Tip) -> Result<(), Error>[src]

pub fn save_body_head(&self, t: &Tip) -> Result<(), Error>[src]

pub fn save_body_tail(&self, t: &Tip) -> Result<(), Error>[src]

pub fn save_header_head(&self, t: &Tip) -> Result<(), Error>[src]

pub fn save_sync_head(&self, t: &Tip) -> Result<(), Error>[src]

pub fn reset_sync_head(&self) -> Result<(), Error>[src]

Reset sync_head to the current head of the header chain.

pub fn reset_header_head(&self) -> Result<(), Error>[src]

Reset header_head to the current head of the body chain.

pub fn get_block(&self, h: &Hash) -> Result<Block, Error>[src]

get block

pub fn block_exists(&self, h: &Hash) -> Result<bool, Error>[src]

pub fn save_block(&self, b: &Block) -> Result<(), Error>[src]

Save the block and the associated input bitmap. Note: the block header is not saved to the db here, assumes this has already been done.

pub fn delete_block(&self, bh: &Hash) -> Result<(), Error>[src]

Delete a full block. Does not delete any record associated with a block header.

pub fn save_block_header(&self, header: &BlockHeader) -> Result<(), Error>[src]

pub fn save_output_pos(
    &self,
    commit: &Commitment,
    pos: u64
) -> Result<(), Error>
[src]

pub fn get_output_pos(&self, commit: &Commitment) -> Result<u64, Error>[src]

pub fn delete_output_pos(&self, commit: &[u8]) -> Result<(), Error>[src]

pub fn get_previous_header(
    &self,
    header: &BlockHeader
) -> Result<BlockHeader, Error>
[src]

pub fn get_block_header(&self, h: &Hash) -> Result<BlockHeader, Error>[src]

pub fn save_block_sums(&self, h: &Hash, sums: &BlockSums) -> Result<(), Error>[src]

pub fn get_block_sums(&self, h: &Hash) -> Result<BlockSums, Error>[src]

pub fn get_block_input_bitmap(&self, bh: &Hash) -> Result<Bitmap, Error>[src]

pub fn commit(self) -> Result<(), Error>[src]

Commits this batch. If it's a child batch, it will be merged with the parent, otherwise the batch is written to db.

pub fn child(&mut self) -> Result<Batch, Error>[src]

Creates a child of this batch. It will be merged with its parent on commit, abandoned otherwise.

Auto Trait Implementations

impl<'a> !Send for Batch<'a>

impl<'a> !Sync for Batch<'a>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> SafeBorrow for T where
    T: ?Sized

impl<T> UnsafeAny for T where
    T: Any

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self