parse-rs 0.2.0

A modern and asynchronous Rust SDK for interacting with Parse Server backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/types/mod.rs

pub mod common;
pub mod date;
// pub mod geopoint;
// pub mod pointer; // Pointer is now in common.rs

pub use common::{
    Endpoint, ParseRelation, Pointer, QueryParams, RelationOp, Results, UpdateResponseData,
};
pub use date::ParseDate;