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
17
18
use std::str::FromStr;

use lunar_lib::database::{DatabaseError, DbHandle, EntryIdExt};

use crate::{
    database::LibraryDb,
    library::collection::{Collection, CollectionId},
};

impl Collection {
    pub fn db_find_by_name(name: impl AsRef<str>) -> Result<Option<Self>, DatabaseError>
    where
        Self: 'static,
    {
        let db = DbHandle::<LibraryDb>::open()?;
        Ok(CollectionId::from_str(name.as_ref()).unwrap().db_get(&db)?)
    }
}