pub type Item = Item;
Expand description
The type of the batch item.
This is an Ed25519Item
.
Aliased Type§
struct Item { /* private fields */ }
Implementations
§impl Item
impl Item
pub fn verify_single(self) -> Result<(), Error>
pub fn verify_single(self) -> Result<(), Error>
Perform non-batched verification of this Item
.
This is useful (in combination with Item::clone
) for implementing fallback
logic when batch verification fails. In contrast to
VerificationKey::verify
, which requires
borrowing the message data, the Item
type is unlinked from the lifetime of
the message.