pub trait OutputsExtension {
    // Required method
    fn try_into_raw_snapshot_request(
        self,
        parameters: SnapshotParameters
    ) -> Result<RawSnapshotRequest, Error>;
}
Expand description

Extensions for collection of voting tools Output struct

Required Methods§

source

fn try_into_raw_snapshot_request( self, parameters: SnapshotParameters ) -> Result<RawSnapshotRequest, Error>

Converts to RawSnapshotRequest

Errors

At any internal error while creating a snapshot

Implementations on Foreign Types§

source§

impl OutputsExtension for Vec<SnapshotEntry>

Implementors§