/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // Code generated by the derive macro refers to this crate name. extern crate self as get_struct_name_types; use std::fmt::Debug; use std::marker::PhantomData; pub use ::get_struct_name::GetStructNameT; // T for trait pub use ::get_struct_name_derive::GetStructNameD; // D for derive use fbthrift::adapter::ThriftAdapter; pub struct WrapperAdapter(PhantomData); #[derive(Clone, Debug, PartialEq)] pub struct Wrapper(pub T); impl ThriftAdapter for WrapperAdapter where T: Clone + Debug + PartialEq + Sync + Send, { type StandardType = T; type AdaptedType = Wrapper; type Error = std::convert::Infallible; fn from_thrift(value: Self::StandardType) -> Result { Ok(Wrapper(value)) } fn to_thrift(value: &Self::AdaptedType) -> Self::StandardType { value.0.clone() } }