Loading codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/customizations/RetryConfigDecorator.kt +2 −2 Original line number Diff line number Diff line Loading @@ -104,7 +104,7 @@ class RetryConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustomiz /// Set the retry_config for the builder /// /// ## Examples /// ```rust /// ```no_run /// use $moduleUseName::config::Config; /// use #{RetryConfig}; /// Loading @@ -119,7 +119,7 @@ class RetryConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustomiz /// Set the retry_config for the builder /// /// ## Examples /// ```rust /// ```no_run /// use $moduleUseName::config::{Builder, Config}; /// use #{RetryConfig}; /// Loading codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/customizations/SleepImplDecorator.kt +4 −2 Original line number Diff line number Diff line Loading @@ -95,7 +95,8 @@ class SleepImplProviderConfig(codegenContext: CodegenContext) : ConfigCustomizat /// Set the sleep_impl for the builder /// /// ## Examples /// ```rust /// /// ```no_run /// use $moduleUseName::config::Config; /// use #{AsyncSleep}; /// use #{Sleep}; Loading @@ -120,7 +121,8 @@ class SleepImplProviderConfig(codegenContext: CodegenContext) : ConfigCustomizat /// Set the sleep_impl for the builder /// /// ## Examples /// ```rust /// /// ```no_run /// use $moduleUseName::config::{Builder, Config}; /// use #{AsyncSleep}; /// use #{Sleep}; Loading codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/customizations/TimeoutConfigDecorator.kt +4 −2 Original line number Diff line number Diff line Loading @@ -94,7 +94,8 @@ class TimeoutConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustom /// Set the timeout_config for the builder /// /// ## Examples /// ```rust /// /// ```no_run /// ## use std::time::Duration; /// use $moduleUseName::config::Config; /// use #{TimeoutConfig}; Loading @@ -111,7 +112,8 @@ class TimeoutConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustom /// Set the timeout_config for the builder /// /// ## Examples /// ```rust /// /// ```no_run /// ## use std::time::Duration; /// use $moduleUseName::config::{Builder, Config}; /// use #{TimeoutConfig}; Loading codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/generators/FluentClientDecorator.kt +2 −2 Original line number Diff line number Diff line Loading @@ -411,7 +411,7 @@ class FluentClientGenerator( /// [SigV4-signed requests], the middleware looks like this: /// // Ignored as otherwise we'd need to pull in all these dev-dependencies. /// ```rust,ignore /// ```ignore /// use aws_endpoint::AwsEndpointStage; /// use aws_http::user_agent::UserAgentStage; /// use aws_sig_auth::middleware::SigV4SigningStage; Loading @@ -434,7 +434,7 @@ class FluentClientGenerator( /// let signer = MapRequestLayer::for_mapper(SigV4SigningStage::new(SigV4Signer::new())); _signer: MapRequestLaye /// let endpoint_resolver = MapRequestLayer::for_mapper(AwsEndpointStage); _endpoint_resolver: MapRequestLayer<Aw /// let user_agent = MapRequestLayer::for_mapper(UserAgentStage::new()); _user_agent: MapRequestLayer<UserAgentSt /// // These layers can be considered as occuring in order, that is: /// // These layers can be considered as occurring in order, that is: /// // 1. Resolve an endpoint /// // 2. Add a user agent /// // 3. Sign Loading codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/generators/ServiceGenerator.kt +1 −1 File changed.Contains only whitespace changes. Show changes Loading
codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/customizations/RetryConfigDecorator.kt +2 −2 Original line number Diff line number Diff line Loading @@ -104,7 +104,7 @@ class RetryConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustomiz /// Set the retry_config for the builder /// /// ## Examples /// ```rust /// ```no_run /// use $moduleUseName::config::Config; /// use #{RetryConfig}; /// Loading @@ -119,7 +119,7 @@ class RetryConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustomiz /// Set the retry_config for the builder /// /// ## Examples /// ```rust /// ```no_run /// use $moduleUseName::config::{Builder, Config}; /// use #{RetryConfig}; /// Loading
codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/customizations/SleepImplDecorator.kt +4 −2 Original line number Diff line number Diff line Loading @@ -95,7 +95,8 @@ class SleepImplProviderConfig(codegenContext: CodegenContext) : ConfigCustomizat /// Set the sleep_impl for the builder /// /// ## Examples /// ```rust /// /// ```no_run /// use $moduleUseName::config::Config; /// use #{AsyncSleep}; /// use #{Sleep}; Loading @@ -120,7 +121,8 @@ class SleepImplProviderConfig(codegenContext: CodegenContext) : ConfigCustomizat /// Set the sleep_impl for the builder /// /// ## Examples /// ```rust /// /// ```no_run /// use $moduleUseName::config::{Builder, Config}; /// use #{AsyncSleep}; /// use #{Sleep}; Loading
codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/customizations/TimeoutConfigDecorator.kt +4 −2 Original line number Diff line number Diff line Loading @@ -94,7 +94,8 @@ class TimeoutConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustom /// Set the timeout_config for the builder /// /// ## Examples /// ```rust /// /// ```no_run /// ## use std::time::Duration; /// use $moduleUseName::config::Config; /// use #{TimeoutConfig}; Loading @@ -111,7 +112,8 @@ class TimeoutConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustom /// Set the timeout_config for the builder /// /// ## Examples /// ```rust /// /// ```no_run /// ## use std::time::Duration; /// use $moduleUseName::config::{Builder, Config}; /// use #{TimeoutConfig}; Loading
codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/generators/FluentClientDecorator.kt +2 −2 Original line number Diff line number Diff line Loading @@ -411,7 +411,7 @@ class FluentClientGenerator( /// [SigV4-signed requests], the middleware looks like this: /// // Ignored as otherwise we'd need to pull in all these dev-dependencies. /// ```rust,ignore /// ```ignore /// use aws_endpoint::AwsEndpointStage; /// use aws_http::user_agent::UserAgentStage; /// use aws_sig_auth::middleware::SigV4SigningStage; Loading @@ -434,7 +434,7 @@ class FluentClientGenerator( /// let signer = MapRequestLayer::for_mapper(SigV4SigningStage::new(SigV4Signer::new())); _signer: MapRequestLaye /// let endpoint_resolver = MapRequestLayer::for_mapper(AwsEndpointStage); _endpoint_resolver: MapRequestLayer<Aw /// let user_agent = MapRequestLayer::for_mapper(UserAgentStage::new()); _user_agent: MapRequestLayer<UserAgentSt /// // These layers can be considered as occuring in order, that is: /// // These layers can be considered as occurring in order, that is: /// // 1. Resolve an endpoint /// // 2. Add a user agent /// // 3. Sign Loading
codegen/src/main/kotlin/software/amazon/smithy/rust/codegen/smithy/generators/ServiceGenerator.kt +1 −1 File changed.Contains only whitespace changes. Show changes