selene-core 0.8.1

selene-core is the backend for Selene, a local-first music player
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use lunar_lib::database::{DbHandle, EntryIdExt, TransactionError};

use crate::{
    database::LibraryDb,
    library::artist::{Artist, ArtistId},
};

impl Artist {
    pub fn db_find_by_name(name: impl AsRef<str>) -> Result<Option<Self>, TransactionError>
    where
        Self: 'static,
    {
        let db = DbHandle::<LibraryDb>::open().unwrap();
        ArtistId::new(name.as_ref()).db_get(&db)
    }
}