pub struct DownloadResult {
pub file: String,
pub bytes: usize,
pub content_type: Option<String>,
}Expand description
ign logs download output model.
Fields§
§file: StringPath of the file written.
bytes: usizeBytes written.
content_type: Option<String>Response content type (application/x-sqlite3 — verified).
Trait Implementations§
Source§impl Debug for DownloadResult
impl Debug for DownloadResult
Auto Trait Implementations§
impl Freeze for DownloadResult
impl RefUnwindSafe for DownloadResult
impl Send for DownloadResult
impl Sync for DownloadResult
impl Unpin for DownloadResult
impl UnsafeUnpin for DownloadResult
impl UnwindSafe for DownloadResult
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