cubeclient 0.1.0

Client for Cube.js
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct V1LoadContinueWait {
    pub error: String,
}

impl V1LoadContinueWait {
    pub fn new(error: String) -> V1LoadContinueWait {
        V1LoadContinueWait { error }
    }
}