aws-sdk-iotwireless 1.107.0

AWS SDK for AWS IoT Wireless
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_gsm_local_id(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::types::GsmLocalId,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    {
        object.key("Bsic").number(
            #[allow(clippy::useless_conversion)]
            ::aws_smithy_types::Number::NegInt((input.bsic).into()),
        );
    }
    {
        object.key("Bcch").number(
            #[allow(clippy::useless_conversion)]
            ::aws_smithy_types::Number::NegInt((input.bcch).into()),
        );
    }
    Ok(())
}