pub struct UploadOptions {
pub disallow_duplicates: bool,
pub add_date_id: bool,
}
Expand description
Options for file uploads to Edge Impulse
These options correspond to various headers that can be set when uploading files.
Fields§
§disallow_duplicates: bool
When set, the server checks the hash of the message against your current dataset
add_date_id: bool
Add a date ID to the filename
Trait Implementations§
Source§impl Debug for UploadOptions
impl Debug for UploadOptions
Source§impl Default for UploadOptions
impl Default for UploadOptions
Source§fn default() -> UploadOptions
fn default() -> UploadOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UploadOptions
impl RefUnwindSafe for UploadOptions
impl Send for UploadOptions
impl Sync for UploadOptions
impl Unpin for UploadOptions
impl UnwindSafe for UploadOptions
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