cipherstash_dynamodb::traits

Trait TryFromPlaintext

source
pub trait TryFromPlaintext: Sized {
    // Required methods
    fn try_from_plaintext(value: Plaintext) -> Result<Self, TypeParseError>;
    fn try_from_optional_plaintext(
        value: Option<Plaintext>,
    ) -> Result<Self, TypeParseError>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl TryFromPlaintext for Value

source§

impl TryFromPlaintext for bool

source§

impl TryFromPlaintext for f64

source§

impl TryFromPlaintext for i16

source§

impl TryFromPlaintext for i32

source§

impl TryFromPlaintext for i64

source§

impl TryFromPlaintext for u64

source§

impl TryFromPlaintext for String

source§

impl TryFromPlaintext for DateTime<Utc>

source§

impl TryFromPlaintext for NaiveDate

source§

impl TryFromPlaintext for Decimal

source§

impl<T> TryFromPlaintext for Option<T>

Implementors§