Trait secp256kfun::marker::ChangeMark[][src]

pub trait ChangeMark<T> {
    type Out;
    fn change_mark(item: T) -> Self::Out;
}
Expand description

A trait that is implemented on marker types to indicate that they can mark the type T.

Associated Types

The result type of marking T with Self

Required methods

Marks item with Self.

Implementations on Foreign Types

Implementors