immich-lib 1.2.0

A Rust library for the Immich API focused on duplicate management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! API response model types.
//!
//! These types map to the Immich API response DTOs.

mod asset;
mod duplicate;
mod exif;
mod execution;

pub use asset::{AssetResponse, AssetType};
pub use duplicate::DuplicateGroup;
pub use exif::ExifInfo;
pub use execution::{
    ConsolidationResult, ExecutionConfig, ExecutionReport, GroupResult, OperationResult,
};