pub struct AioductFeatureConfig {
pub version: Option<String>,
pub runtime: Option<AioductRuntime>,
pub tls: Option<AioductTls>,
pub compression: Option<Vec<String>>,
pub features: Option<Vec<String>>,
}Fields§
§version: Option<String>§runtime: Option<AioductRuntime>§tls: Option<AioductTls>§compression: Option<Vec<String>>§features: Option<Vec<String>>Implementations§
Source§impl AioductFeatureConfig
impl AioductFeatureConfig
pub fn version(&self) -> &str
pub fn resolved_features(&self) -> Vec<String>
pub fn features_toml_array(&self) -> String
Trait Implementations§
Source§impl Clone for AioductFeatureConfig
impl Clone for AioductFeatureConfig
Source§fn clone(&self) -> AioductFeatureConfig
fn clone(&self) -> AioductFeatureConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AioductFeatureConfig
impl Debug for AioductFeatureConfig
Source§impl Default for AioductFeatureConfig
impl Default for AioductFeatureConfig
Source§fn default() -> AioductFeatureConfig
fn default() -> AioductFeatureConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AioductFeatureConfig
impl<'de> Deserialize<'de> for AioductFeatureConfig
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 AioductFeatureConfig
impl RefUnwindSafe for AioductFeatureConfig
impl Send for AioductFeatureConfig
impl Sync for AioductFeatureConfig
impl Unpin for AioductFeatureConfig
impl UnsafeUnpin for AioductFeatureConfig
impl UnwindSafe for AioductFeatureConfig
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