Skip to main content

nominal_api/conjure/objects/persistent/compute/api/
is_enabled_response.rs

1#[derive(
2    Debug,
3    Clone,
4    conjure_object::serde::Serialize,
5    conjure_object::serde::Deserialize,
6    PartialEq,
7    Eq,
8    PartialOrd,
9    Ord,
10    Hash,
11    Copy
12)]
13#[serde(crate = "conjure_object::serde")]
14#[conjure_object::private::staged_builder::staged_builder]
15#[builder(crate = conjure_object::private::staged_builder, update, inline)]
16pub struct IsEnabledResponse {}
17impl IsEnabledResponse {
18    /// Constructs a new instance of the type.
19    #[inline]
20    pub fn new() -> Self {
21        Self::builder().build()
22    }
23}