zesty_api/v0/
impls.rs

1//
2// Copyright 2023 Zesty Tech Ltd. All rights reserved.
3// Use is subject to license terms.
4//
5
6use super::*;
7
8impl From<Vec<Cluster>> for Clusters {
9    fn from(data: Vec<Cluster>) -> Self {
10        Self { data }
11    }
12}