Loading aws/rust-runtime/aws-runtime/Cargo.toml +1 −1 Original line number Diff line number Diff line [package] name = "aws-runtime" version = "1.2.0" version = "1.2.1" authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"] description = "Runtime support code for the AWS SDK. This crate isn't intended to be used directly." edition = "2021" Loading aws/rust-runtime/aws-runtime/src/env_config/section.rs +2 −0 Original line number Diff line number Diff line Loading @@ -18,12 +18,14 @@ pub(crate) trait Section { fn name(&self) -> &str; /// Returns all the properties in this section #[allow(dead_code)] fn properties(&self) -> &HashMap<String, Property>; /// Returns a reference to the property named `name` fn get(&self, name: &str) -> Option<&str>; /// True if there are no properties in this section. #[allow(dead_code)] fn is_empty(&self) -> bool; /// Insert a property into a section Loading Loading
aws/rust-runtime/aws-runtime/Cargo.toml +1 −1 Original line number Diff line number Diff line [package] name = "aws-runtime" version = "1.2.0" version = "1.2.1" authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"] description = "Runtime support code for the AWS SDK. This crate isn't intended to be used directly." edition = "2021" Loading
aws/rust-runtime/aws-runtime/src/env_config/section.rs +2 −0 Original line number Diff line number Diff line Loading @@ -18,12 +18,14 @@ pub(crate) trait Section { fn name(&self) -> &str; /// Returns all the properties in this section #[allow(dead_code)] fn properties(&self) -> &HashMap<String, Property>; /// Returns a reference to the property named `name` fn get(&self, name: &str) -> Option<&str>; /// True if there are no properties in this section. #[allow(dead_code)] fn is_empty(&self) -> bool; /// Insert a property into a section Loading