pub struct FileListItem {
pub filename: String,
pub md5: String,
pub mimetype: String,
pub tool_slug: String,
pub toolkit_slug: String,
}Expand description
A file list item returned by the API.
Fields§
§filename: StringFile name.
md5: StringMD5 checksum.
mimetype: StringMIME type.
tool_slug: StringTool slug.
toolkit_slug: StringToolkit slug.
Trait Implementations§
Source§impl Clone for FileListItem
impl Clone for FileListItem
Source§fn clone(&self) -> FileListItem
fn clone(&self) -> FileListItem
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 FileListItem
impl Debug for FileListItem
Source§impl<'de> Deserialize<'de> for FileListItem
impl<'de> Deserialize<'de> for FileListItem
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 FileListItem
impl RefUnwindSafe for FileListItem
impl Send for FileListItem
impl Sync for FileListItem
impl Unpin for FileListItem
impl UnsafeUnpin for FileListItem
impl UnwindSafe for FileListItem
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