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§
Source§impl Clone for TypeDetail
impl Clone for TypeDetail
Source§fn clone(&self) -> TypeDetail
fn clone(&self) -> TypeDetail
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TypeDetail
impl Debug for TypeDetail
Source§impl<'de> Deserialize<'de> for TypeDetail
impl<'de> Deserialize<'de> for TypeDetail
Source§fn 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
Source§impl Hash for TypeDetail
impl Hash for TypeDetail
Source§impl PartialEq for TypeDetail
impl PartialEq for TypeDetail
Source§impl Serialize for TypeDetail
impl Serialize for TypeDetail
impl Eq for TypeDetail
impl StructuralPartialEq for TypeDetail
Auto Trait Implementations§
impl Freeze for TypeDetail
impl RefUnwindSafe for TypeDetail
impl Send for TypeDetail
impl Sync for TypeDetail
impl Unpin for TypeDetail
impl UnwindSafe for TypeDetail
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.