Trait dyon_to_rust::SecretValue [] [src]

pub trait SecretValue {
    type ValueType;
    fn value(&self) -> Self::ValueType;
}

Implemented by types that might have secrets.

Associated Types

Required Methods

Returns the value of the type (not the secret).

Implementors