cy-celcat 0.1.1

Safe wrapper around CY Cergy Paris Univertity’s Celcat API
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod calendar;
pub mod event;

use serde::{Deserialize, Serialize};

pub trait Fetchable: for<'de> Deserialize<'de> {
    type Request: Serialize;

    const METHOD_NAME: &'static str;
}