# rustc version rustc 1.58.0-nightly (e249ce6b2 2021-10-30)
# docs.rs version docsrs 0.6.0 (2b8069e 2021-10-30)
# build log [INFO] running `Command { std: "docker" "create" "-v" "/home/cratesfyi/workspace/builds/lambda-runtime-types-0.3.1/target:/opt/rustwide/target:rw,Z" "-v" "/home/cratesfyi/workspace/builds/lambda-runtime-types-0.3.1/source:/opt/rustwide/workdir:ro,Z" "-v" "/home/cratesfyi/workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/home/cratesfyi/workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "DOCS_RS=1" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "3221225472" "--cpus" "3" "--user" "1001:1001" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4f0722a3a9528806a4e1311fa3495566de80729fa0e45b4ee8328e7a0892714c" "/opt/rustwide/cargo-home/bin/cargo" "+nightly" "rustdoc" "--lib" "-Zrustdoc-map" "--all-features" "-Zunstable-options" "--config=doc.extern-map.registries.crates-io=\"https://docs.rs/{pkg_name}/{version}/x86_64-unknown-linux-gnu\"" "-j3" "--" "--cfg" "docsrs" "-Z" "unstable-options" "--emit=invocation-specific" "--resource-suffix" "-20211030-1.58.0-nightly-e249ce6b2" "--static-root-path" "/" "--cap-lints" "warn" "--disable-per-crate-search", kill_on_drop: false }` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 62ca716a22bbb3a6bf9072898f861e1964a1178db671af5822e000e138e1fd5a [INFO] running `Command { std: "docker" "start" "-a" "62ca716a22bbb3a6bf9072898f861e1964a1178db671af5822e000e138e1fd5a", kill_on_drop: false }` [INFO] [stderr] Documenting lambda-runtime-types v0.3.1 (/opt/rustwide/workdir) [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/rotate/mod.rs:81:1 [INFO] [stderr] | [INFO] [stderr] 81 | /// `Event` which is send by the `SecretManager` to the rotation lambda [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] note: the lint level is defined here [INFO] [stderr] --> src/lib.rs:157:5 [INFO] [stderr] | [INFO] [stderr] 157 | rustdoc::missing_doc_code_examples, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/rotate/mod.rs:109:1 [INFO] [stderr] | [INFO] [stderr] 109 | /// Available steps for in a Secret Manager rotation [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/rotate/mod.rs:127:1 [INFO] [stderr] | [INFO] [stderr] 127 | / /// Defines a type which is executed every time a lambda [INFO] [stderr] 128 | | /// is invoced. This type is made for `SecretManager` [INFO] [stderr] 129 | | /// rotation lambdas. [INFO] [stderr] 130 | | /// [INFO] [stderr] ... | [INFO] [stderr] 142 | | /// necessary fields, as other undefined [INFO] [stderr] 143 | | /// fields are internally preserved. [INFO] [stderr] | |________________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/rotate/mod.rs:151:5 [INFO] [stderr] | [INFO] [stderr] 151 | /// See documentation of [`super::Runner::setup`] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/rotate/mod.rs:154:5 [INFO] [stderr] | [INFO] [stderr] 154 | / /// Create a new secret without setting it yet. [INFO] [stderr] 155 | | /// Only called if there is no pending secret available [INFO] [stderr] 156 | | /// (which may happen if rotation fails at any stage) [INFO] [stderr] | |_________________________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/rotate/mod.rs:164:5 [INFO] [stderr] | [INFO] [stderr] 164 | / /// Set the secret in the service [INFO] [stderr] 165 | | /// Only called if password is not already set, checked by [INFO] [stderr] 166 | | /// calling [`test`] with new password beforehand. The reason [INFO] [stderr] 167 | | /// for that it, that a failure in a later stage means all [INFO] [stderr] 168 | | /// stages are called again with set failing as the old password [INFO] [stderr] 169 | | /// does not work anymore [INFO] [stderr] | |_____________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/rotate/mod.rs:177:5 [INFO] [stderr] | [INFO] [stderr] 177 | /// Test whether a connection with the given secret works [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/rotate/mod.rs:184:5 [INFO] [stderr] | [INFO] [stderr] 184 | /// Perform any work which may be necessary to complete rotation [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/lib.rs:204:1 [INFO] [stderr] | [INFO] [stderr] 204 | / /// Defines a type which is executed every time a lambda [INFO] [stderr] 205 | | /// is invoced. [INFO] [stderr] 206 | | /// [INFO] [stderr] 207 | | /// Types: [INFO] [stderr] ... | [INFO] [stderr] 218 | | /// * `Return`: Type which is the result of the lamba [INFO] [stderr] 219 | | /// invocation being returned to AWS [INFO] [stderr] | |________________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/lib.rs:227:5 [INFO] [stderr] | [INFO] [stderr] 227 | / /// Invoked only once before lambda runtime start. Does not get called on each [INFO] [stderr] 228 | | /// lambda invocation. Can be used to setup logging and other global services, [INFO] [stderr] 229 | | /// but should be short as it delays lambda startup [INFO] [stderr] | |_______________________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/lib.rs:232:5 [INFO] [stderr] | [INFO] [stderr] 232 | / /// Invoked for every lambda invocation. Data in `shared` is persisted between [INFO] [stderr] 233 | | /// invocations as long as they are running in the same `execution environment` [INFO] [stderr] 234 | | /// [INFO] [stderr] 235 | | /// More Info: <https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html> [INFO] [stderr] | |_______________________________________________________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/lib.rs:239:1 [INFO] [stderr] | [INFO] [stderr] 239 | / /// Lambda entrypoint. This function sets up a lambda [INFO] [stderr] 240 | | /// multi-thread runtimes and executes [`exec`]. If you [INFO] [stderr] 241 | | /// already have your own runtime, use the [`exec`] [INFO] [stderr] 242 | | /// function. [INFO] [stderr] ... | [INFO] [stderr] 257 | | /// * `Return`: Type which is the result of the lamba [INFO] [stderr] 258 | | /// invocation being returned to AWS [INFO] [stderr] | |________________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/lib.rs:276:1 [INFO] [stderr] | [INFO] [stderr] 276 | / /// Lambda entrypoint. This function requires a [INFO] [stderr] 277 | | /// running tokio runtime. Alternativly use [`exec_tokio`] [INFO] [stderr] 278 | | /// which creates one. [INFO] [stderr] 279 | | /// [INFO] [stderr] ... | [INFO] [stderr] 293 | | /// * `Return`: Type which is the result of the lamba [INFO] [stderr] 294 | | /// invocation being returned to AWS [INFO] [stderr] | |________________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/lib.rs:374:1 [INFO] [stderr] | [INFO] [stderr] 374 | / /// TestData which can be used to test lambda invocations [INFO] [stderr] 375 | | /// locally in combination with [`exec_test`]. [INFO] [stderr] | |______________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: missing code example in this documentation [INFO] [stderr] --> src/lib.rs:384:1 [INFO] [stderr] | [INFO] [stderr] 384 | / /// Lambda entrypoint. This function can be used to [INFO] [stderr] 385 | | /// test one or multiple lambda invocations locally. [INFO] [stderr] 386 | | /// [INFO] [stderr] 387 | | /// Types: [INFO] [stderr] ... | [INFO] [stderr] 400 | | /// * `Return`: Type which is the result of the lamba [INFO] [stderr] 401 | | /// invocation being returned to AWS [INFO] [stderr] | |________________________________________________^ [INFO] [stderr] [INFO] [stderr] warning: `lambda-runtime-types` (lib doc) generated 15 warnings [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.80s [INFO] running `Command { std: "docker" "inspect" "62ca716a22bbb3a6bf9072898f861e1964a1178db671af5822e000e138e1fd5a", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "62ca716a22bbb3a6bf9072898f861e1964a1178db671af5822e000e138e1fd5a", kill_on_drop: false }` [INFO] [stdout] 62ca716a22bbb3a6bf9072898f861e1964a1178db671af5822e000e138e1fd5a