[][src]Struct sonnerie::create_tx::CreateTx

pub struct CreateTx { /* fields omitted */ }

Methods

impl CreateTx[src]

pub fn new(dir: &Path) -> Result<CreateTx>[src]

pub fn add_record(
    &mut self,
    key: &str,
    format: &str,
    data: &[u8]
) -> Result<(), WriteFailure>
[src]

pub fn commit_to(self, final_name: &Path) -> Result<()>[src]

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

Trait Implementations

impl Drop for CreateTx[src]

Auto Trait Implementations

impl !RefUnwindSafe for CreateTx

impl Send for CreateTx

impl Sync for CreateTx

impl Unpin for CreateTx

impl !UnwindSafe for CreateTx

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,