manas_storage 0.1.0

This crate provides traits and implementations for a `SolidStorage`, and `SolidStorageService`, (a solid-protocol compatible http service over a storage).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! I define a [`MethodService`] for handling `PUT` / `PATCH` method on solid resources.
//!

use self::{
    base::BasePutOrPatchService, marshaller::default::DefaultBasePutOrPatchResponseMarshaller,
};
use super::MethodService;

pub mod base;
pub mod marshaller;

/// Type alias for default `PutOrPatch` service.
pub type DefaultPutOrPatchService<Storage> =
    MethodService<BasePutOrPatchService<Storage>, DefaultBasePutOrPatchResponseMarshaller<Storage>>;