getstream 0.1.0-preview.2

Official Rust SDK for Stream Video (server REST + SFU WebRTC).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Serde request/response models, hand-ported from getstream-go `models.go`.
//!
//! Field names track the Go SDK's JSON tags so a later OpenAPI codegen pass can
//! replace these by hand-written types transparently. Response types derive
//! `Default` and `#[serde(default)]` so partial payloads deserialize cleanly and
//! unknown fields are ignored.

mod call;
mod shared;
mod user;

pub use call::*;
pub use shared::*;
pub use user::*;