render_cdk 0.0.21

This crate provides a streamlined interface for interacting with Render, a platform that allows you to build, deploy, and scale your apps with ease.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(missing_docs)]
#![allow(non_snake_case)]
// [JSON] parsing.
use serde::Serialize;

pub trait Stringify {
    fn stringify(&self) -> String;
}

impl<T: Serialize> Stringify for T {
    fn stringify(&self) -> String {
        serde_json::to_string_pretty(&self).unwrap()
    }
}