embystream 0.0.36

Another Emby streaming application (frontend/backend separation) written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
use hyper::{HeaderMap, StatusCode};

use crate::gateway::response::BoxBodyType;

pub struct Response {
    pub status: StatusCode,
    pub headers: HeaderMap,
    pub body: BoxBodyType,
}