Trait lockchain_core::traits::Encryptable[][src]

pub trait Encryptable: AutoEncoder { }

This is purely a marker trait for encryptable types

Indicates that a type should be handlable by an encryption engine, also relying on the auto encoder functionality.

Additional functions might be added to this trait further down the road but for now, it's really just a marker that you can easily implement for any type that's also AutoEncoder

impl Encryptable for YourSpecialType {}

Implementors