embystream 0.0.25

Another Emby streaming application (frontend/backend separation) written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use std::path::PathBuf;

use hyper::Uri;

use super::proxy_mode::ProxyMode;

#[derive(Debug, Clone)]
pub(crate) enum Source {
    Local {
        path: PathBuf,
        device_id: String,
        playback_session_id: String,
    },
    Remote {
        uri: Uri,
        mode: ProxyMode,
    },
}