pub struct FileTypeId(/* private fields */);
Expand description
FileTypeId
JSON schema
{
"type": "integer",
"enum": [
3,
6,
0,
1,
2,
99,
4,
5,
7
]
}
Trait Implementations§
Source§impl Clone for FileTypeId
impl Clone for FileTypeId
Source§fn clone(&self) -> FileTypeId
fn clone(&self) -> FileTypeId
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 FileTypeId
impl Debug for FileTypeId
Source§impl Deref for FileTypeId
impl Deref for FileTypeId
Source§impl<'de> Deserialize<'de> for FileTypeId
impl<'de> Deserialize<'de> for FileTypeId
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 From<&FileTypeId> for FileTypeId
impl From<&FileTypeId> for FileTypeId
Source§fn from(value: &FileTypeId) -> Self
fn from(value: &FileTypeId) -> Self
Converts to this type from the input type.
Source§impl From<FileTypeId> for i64
impl From<FileTypeId> for i64
Source§fn from(value: FileTypeId) -> Self
fn from(value: FileTypeId) -> Self
Converts to this type from the input type.
Source§impl Serialize for FileTypeId
impl Serialize for FileTypeId
Source§impl TryFrom<i64> for FileTypeId
impl TryFrom<i64> for FileTypeId
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for FileTypeId
impl RefUnwindSafe for FileTypeId
impl Send for FileTypeId
impl Sync for FileTypeId
impl Unpin for FileTypeId
impl UnwindSafe for FileTypeId
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