tauri-plugin-medialibrary 0.14.0

A tauri plugin to access the systems media library (e.g. the android medialibrary)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::MediaLibrarySource;
use serde::Deserialize;

#[derive(Debug)]
pub struct Entry {
    pub source: MediaLibrarySource,
}

#[derive(Deserialize)]
#[serde(untagged)]
pub(crate) enum EntryRaw {
    Value(MediaLibrarySource),
    Object { source: MediaLibrarySource },
}