Enum messagebird_async::sms::TypeDetail
source · pub enum TypeDetail {
UserDataHeader(String),
}Expand description
Type Details
Additional message details for the SMS message when passing and querying the MessageBird system.
Variants
UserDataHeader(String)
additional user data specific bytes FIXME should not be a string but a proper type include serde impl according to https://en.wikipedia.org/wiki/User_Data_Header but is better to be done in a separate crate
Implementations
Trait Implementations
sourceimpl Clone for TypeDetail
impl Clone for TypeDetail
sourcefn clone(&self) -> TypeDetail
fn clone(&self) -> TypeDetail
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for TypeDetail
impl Debug for TypeDetail
sourceimpl<'de> Deserialize<'de> for TypeDetail
impl<'de> Deserialize<'de> for TypeDetail
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Hash for TypeDetail
impl Hash for TypeDetail
sourceimpl PartialEq<TypeDetail> for TypeDetail
impl PartialEq<TypeDetail> for TypeDetail
sourcefn eq(&self, other: &TypeDetail) -> bool
fn eq(&self, other: &TypeDetail) -> bool
sourceimpl Serialize for TypeDetail
impl Serialize for TypeDetail
impl Eq for TypeDetail
impl StructuralEq for TypeDetail
impl StructuralPartialEq for TypeDetail
Auto Trait Implementations
impl RefUnwindSafe for TypeDetail
impl Send for TypeDetail
impl Sync for TypeDetail
impl Unpin for TypeDetail
impl UnwindSafe for TypeDetail
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.