/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
/// Pins a value on the stack.
///
/// # Examples
///
/// ```rust
/// # use core::pin::Pin;
/// # struct Foo {}
/// # use aws_smithy_http::pin_mut;
/// let foo = Foo { /* ... */ };
/// pin_mut!(foo);
/// let _: Pin<&mut Foo> = foo;
/// ```