pub enum SourceType {
BASE64,
URL,
TEXT,
}Variants§
Trait Implementations§
Source§impl Clone for SourceType
impl Clone for SourceType
Source§fn clone(&self) -> SourceType
fn clone(&self) -> SourceType
Returns a duplicate 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 SourceType
impl Debug for SourceType
Source§impl<'de> Deserialize<'de> for SourceType
impl<'de> Deserialize<'de> for SourceType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SourceType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SourceType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SourceType> for ContentFormat
impl From<SourceType> for ContentFormat
Source§fn from(source_type: SourceType) -> ContentFormat
fn from(source_type: SourceType) -> ContentFormat
Converts to this type from the input type.
Source§impl PartialEq for SourceType
impl PartialEq for SourceType
Source§impl Serialize for SourceType
impl Serialize for SourceType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<ContentFormat> for SourceType
impl TryFrom<ContentFormat> for SourceType
Source§type Error = MessageError
type Error = MessageError
The type returned in the event of a conversion error.
Source§fn try_from(
format: ContentFormat,
) -> Result<SourceType, <SourceType as TryFrom<ContentFormat>>::Error>
fn try_from( format: ContentFormat, ) -> Result<SourceType, <SourceType as TryFrom<ContentFormat>>::Error>
Performs the conversion.
impl StructuralPartialEq for SourceType
Auto Trait Implementations§
impl Freeze for SourceType
impl RefUnwindSafe for SourceType
impl Send for SourceType
impl Sync for SourceType
impl Unpin for SourceType
impl UnsafeUnpin for SourceType
impl UnwindSafe for SourceType
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