pub struct AdvancedFeatures {
pub tproxy: bool,
pub kms: bool,
pub public_sys_info: bool,
pub public_logs: bool,
pub docker_config: DockerConfig,
pub listed: bool,
}Expand description
Advanced features configuration for TEE deployments.
Controls security and visibility settings for deployed applications.
Fields§
§tproxy: boolEnable transparent proxy support
kms: boolEnable Key Management System integration
public_sys_info: boolMake system information publicly accessible
public_logs: boolMake application logs publicly accessible
docker_config: DockerConfigDocker registry authentication settings
listed: boolList this deployment in public directories
Trait Implementations§
Source§impl Clone for AdvancedFeatures
impl Clone for AdvancedFeatures
Source§fn clone(&self) -> AdvancedFeatures
fn clone(&self) -> AdvancedFeatures
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 AdvancedFeatures
impl Debug for AdvancedFeatures
Source§impl<'de> Deserialize<'de> for AdvancedFeatures
impl<'de> Deserialize<'de> for AdvancedFeatures
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
Auto Trait Implementations§
impl Freeze for AdvancedFeatures
impl RefUnwindSafe for AdvancedFeatures
impl Send for AdvancedFeatures
impl Sync for AdvancedFeatures
impl Unpin for AdvancedFeatures
impl UnwindSafe for AdvancedFeatures
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