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_global_identity(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::types::GlobalIdentity,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    {
        object.key("Lac").number(
            #[allow(clippy::useless_conversion)]
            ::aws_smithy_types::Number::NegInt((input.lac).into()),
        );
    }
    {
        object.key("GeranCid").number(
            #[allow(clippy::useless_conversion)]
            ::aws_smithy_types::Number::NegInt((input.geran_cid).into()),
        );
    }
    Ok(())
}