/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/usecrate::operation::Operation;usesuper::Plugin;/// A [`Plugin`] that maps an `input` [`Operation`] to itself.
pubstructIdentityPlugin;impl<P, Op, S, L>Plugin<P, Op, S, L>forIdentityPlugin{typeService= S;typeLayer= L;fnmap(&self, input:Operation<S, L>)->Operation<S, L>{
input
}}