pub enum FileContentType {
Pdf,
Text,
}Expand description
Content type accepted by POST /v1/uploads/files.
Variants§
Trait Implementations§
Source§impl Clone for FileContentType
impl Clone for FileContentType
Source§fn clone(&self) -> FileContentType
fn clone(&self) -> FileContentType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FileContentType
Source§impl Debug for FileContentType
impl Debug for FileContentType
Source§impl<'de> Deserialize<'de> for FileContentType
impl<'de> Deserialize<'de> for FileContentType
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
impl Eq for FileContentType
Source§impl PartialEq for FileContentType
impl PartialEq for FileContentType
Source§fn eq(&self, other: &FileContentType) -> bool
fn eq(&self, other: &FileContentType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FileContentType
impl Serialize for FileContentType
impl StructuralPartialEq for FileContentType
Auto Trait Implementations§
impl Freeze for FileContentType
impl RefUnwindSafe for FileContentType
impl Send for FileContentType
impl Sync for FileContentType
impl Unpin for FileContentType
impl UnsafeUnpin for FileContentType
impl UnwindSafe for FileContentType
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