pub enum MessagePartInput {
Text {
text: String,
},
File {
mime: String,
filename: Option<String>,
url: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for MessagePartInput
impl Clone for MessagePartInput
Source§fn clone(&self) -> MessagePartInput
fn clone(&self) -> MessagePartInput
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 MessagePartInput
impl Debug for MessagePartInput
Source§impl<'de> Deserialize<'de> for MessagePartInput
impl<'de> Deserialize<'de> for MessagePartInput
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
Auto Trait Implementations§
impl Freeze for MessagePartInput
impl RefUnwindSafe for MessagePartInput
impl Send for MessagePartInput
impl Sync for MessagePartInput
impl Unpin for MessagePartInput
impl UnsafeUnpin for MessagePartInput
impl UnwindSafe for MessagePartInput
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