pub struct NginxConfigurationProperties {
pub provisioning_state: Option<ProvisioningState>,
pub files: Vec<NginxConfigurationFile>,
pub protected_files: Vec<NginxConfigurationFile>,
pub package: Option<NginxConfigurationPackage>,
pub root_file: Option<String>,
}Fields§
§provisioning_state: Option<ProvisioningState>§files: Vec<NginxConfigurationFile>§protected_files: Vec<NginxConfigurationFile>§package: Option<NginxConfigurationPackage>§root_file: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for NginxConfigurationProperties
impl Clone for NginxConfigurationProperties
Source§fn clone(&self) -> NginxConfigurationProperties
fn clone(&self) -> NginxConfigurationProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NginxConfigurationProperties
impl Debug for NginxConfigurationProperties
Source§impl Default for NginxConfigurationProperties
impl Default for NginxConfigurationProperties
Source§fn default() -> NginxConfigurationProperties
fn default() -> NginxConfigurationProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NginxConfigurationProperties
impl<'de> Deserialize<'de> for NginxConfigurationProperties
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NginxConfigurationProperties
impl PartialEq for NginxConfigurationProperties
Source§fn eq(&self, other: &NginxConfigurationProperties) -> bool
fn eq(&self, other: &NginxConfigurationProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NginxConfigurationProperties
Auto Trait Implementations§
impl Freeze for NginxConfigurationProperties
impl RefUnwindSafe for NginxConfigurationProperties
impl Send for NginxConfigurationProperties
impl Sync for NginxConfigurationProperties
impl Unpin for NginxConfigurationProperties
impl UnwindSafe for NginxConfigurationProperties
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more