Type Alias zebra_state::SaplingScanningKey

source ·
pub type SaplingScanningKey = String;
Expand description

The type used in Zebra to store Sapling scanning keys. It can represent a full viewing key or an individual viewing key.

Aliased Type§

struct SaplingScanningKey {
    vec: Vec<u8>,
}

Fields§

§vec: Vec<u8>

Trait Implementations§

source§

impl FromDisk for SaplingScanningKey

source§

fn from_bytes(bytes: impl AsRef<[u8]>) -> Self

Converts raw disk bytes back into the deserialized type. Read more
source§

impl IntoDisk for SaplingScanningKey

§

type Bytes = Vec<u8>

The type used to write bytes to disk, and compare a value as a key to on-disk keys.
source§

fn as_bytes(&self) -> Self::Bytes

Converts the current type into serialized raw bytes. Read more