ruma-client-api 0.7.1

Types for the endpoints in the Matrix client-server API.
Documentation
//! Modules to hold functions for de-/serializing remote types

pub mod duration;

pub fn is_default<T: Default + PartialEq>(val: &T) -> bool {
    val == &T::default()
}