pub struct Ingestion {
api_key: String,
hmac_key: Option<String>,
host: String,
debug: bool,
}
Expand description
Edge Impulse Ingestion API client
This struct provides methods to interact with the Edge Impulse Ingestion API. It supports uploading both raw sensor data and files to Edge Impulse for machine learning training, testing, and anomaly detection.
Fields§
§api_key: String
§hmac_key: Option<String>
§host: String
§debug: bool
Implementations§
Source§impl Ingestion
impl Ingestion
pub fn new(api_key: String) -> Self
pub fn with_host(api_key: String, host: String) -> Self
pub fn with_hmac(self, hmac_key: String) -> Self
pub fn with_debug(self) -> Self
async fn create_signature(&self, data: &[u8]) -> Result<String, IngestionError>
pub async fn upload_sample( &self, params: UploadSampleParams<'_>, ) -> Result<String, IngestionError>
Sourcepub async fn upload_file<P: AsRef<Path>>(
&self,
file_path: P,
category: Category,
label: Option<String>,
options: Option<UploadOptions>,
) -> Result<String, IngestionError>
pub async fn upload_file<P: AsRef<Path>>( &self, file_path: P, category: Category, label: Option<String>, options: Option<UploadOptions>, ) -> Result<String, IngestionError>
Upload a file to Edge Impulse using the /files endpoint
Auto Trait Implementations§
impl Freeze for Ingestion
impl RefUnwindSafe for Ingestion
impl Send for Ingestion
impl Sync for Ingestion
impl Unpin for Ingestion
impl UnwindSafe for Ingestion
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