pub trait Sessions {
    // Required methods
    fn get() -> SessionsGetResponse;
    fn post(body: Session) -> SessionsPostResponse;
}

Required Methods§

Implementors§