pub struct FileResp {Show 20 fields
pub id: i64,
pub uuid: String,
pub folder_id: i64,
pub display_name: String,
pub filename: String,
pub upload_status: String,
pub content_type: String,
pub url: String,
pub size: i64,
pub created_at: String,
pub updated_at: String,
pub unlock_at: Option<String>,
pub locked: bool,
pub hidden: bool,
pub lock_at: Option<String>,
pub hidden_for_user: bool,
pub modified_at: String,
pub mime_class: String,
pub media_entry_id: Option<String>,
pub locked_for_user: bool,
}
Fields§
§id: i64
§uuid: String
§folder_id: i64
§display_name: String
§filename: String
§upload_status: String
§content_type: String
§url: String
§size: i64
§created_at: String
§updated_at: String
§unlock_at: Option<String>
§locked: bool
§lock_at: Option<String>
§modified_at: String
§mime_class: String
§media_entry_id: Option<String>
§locked_for_user: bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileResp
impl<'de> Deserialize<'de> for FileResp
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 FileResp
impl RefUnwindSafe for FileResp
impl Send for FileResp
impl Sync for FileResp
impl Unpin for FileResp
impl UnwindSafe for FileResp
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