notion-sdk 0.0.0

A rust implementation of the nvd-yew.
Documentation
1
2
3
4
5
6
7
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct Formula {
    /// Formula to evaluate for this property
    pub expression: String,
}