Enum stringly_typed::UpdateError [] [src]

pub enum UpdateError {
    TypeError {
        found: &'static str,
        expected: &'static str,
    },
    TooManyKeys {
        elements_remaning: usize,
    },
    UnknownField {
        valid_fields: &'static [&'static str],
    },
    CantSerialize {
        data_type: &'static str,
    },
}

Variants

Fields of TypeError

Fields of TooManyKeys

Fields of UnknownField

Fields of CantSerialize

Trait Implementations

impl Debug for UpdateError
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for UpdateError
[src]

impl Clone for UpdateError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for UpdateError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for UpdateError

impl Sync for UpdateError