[][src]Enum messagebird_async::sms::PayloadEncoding

pub enum PayloadEncoding {
    Plain,
    Unicode,
    Auto,
}

SMS encoding enum

Defines how to interpret the message encoding for text messages. For binary SMS see PayloadType

Variants

Plain
Unicode
Auto

Trait Implementations

impl Clone for PayloadEncoding[src]

impl Debug for PayloadEncoding[src]

impl<'de> Deserialize<'de> for PayloadEncoding[src]

impl Eq for PayloadEncoding[src]

impl PartialEq<PayloadEncoding> for PayloadEncoding[src]

impl Serialize for PayloadEncoding[src]

impl StructuralEq for PayloadEncoding[src]

impl StructuralPartialEq for PayloadEncoding[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.