// Copyright 2026 Kushal Das
// SPDX-License-Identifier: MIT
useserde::{Deserialize, Serialize};/// Result of a successful photo capture.
#[derive(Debug, Clone, Serialize, Deserialize)]#[serde(rename_all ="camelCase")]pubstructCaptureResult{/// Base64-encoded JPEG image data.
pubimage_data: String,
/// Width of the captured image in pixels.
pubwidth:u32,
/// Height of the captured image in pixels.
pubheight:u32,
}