aws-sdk-quicksight 1.145.0

AWS SDK for Amazon QuickSight
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_plugin_visual_configuration(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::types::PluginVisualConfiguration,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    if let Some(var_1) = &input.field_wells {
        let mut array_2 = object.key("FieldWells").start_array();
        for item_3 in var_1 {
            {
                #[allow(unused_mut)]
                let mut object_4 = array_2.value().start_object();
                crate::protocol_serde::shape_plugin_visual_field_well::ser_plugin_visual_field_well(&mut object_4, item_3)?;
                object_4.finish();
            }
        }
        array_2.finish();
    }
    if let Some(var_5) = &input.visual_options {
        #[allow(unused_mut)]
        let mut object_6 = object.key("VisualOptions").start_object();
        crate::protocol_serde::shape_plugin_visual_options::ser_plugin_visual_options(&mut object_6, var_5)?;
        object_6.finish();
    }
    if let Some(var_7) = &input.sort_configuration {
        #[allow(unused_mut)]
        let mut object_8 = object.key("SortConfiguration").start_object();
        crate::protocol_serde::shape_plugin_visual_sort_configuration::ser_plugin_visual_sort_configuration(&mut object_8, var_7)?;
        object_8.finish();
    }
    Ok(())
}

pub(crate) fn de_plugin_visual_configuration<'a, I>(
    tokens: &mut ::std::iter::Peekable<I>,
    _value: &'a [u8],
    depth: u32,
) -> ::std::result::Result<Option<crate::types::PluginVisualConfiguration>, ::aws_smithy_json::deserialize::error::DeserializeError>
where
    I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
{
    if depth >= 128u32 {
        return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
            "maximum nesting depth exceeded",
        ));
    }
    match tokens.next().transpose()? {
        Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
        Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
            #[allow(unused_mut)]
            let mut builder = crate::types::builders::PluginVisualConfigurationBuilder::default();
            loop {
                match tokens.next().transpose()? {
                    Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
                    Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
                        match key.to_unescaped()?.as_ref() {
                            "FieldWells" => {
                                builder = builder.set_field_wells(
                                    crate::protocol_serde::shape_plugin_visual_field_wells::de_plugin_visual_field_wells(tokens, _value, depth + 1)?,
                                );
                            }
                            "VisualOptions" => {
                                builder = builder.set_visual_options(crate::protocol_serde::shape_plugin_visual_options::de_plugin_visual_options(
                                    tokens,
                                    _value,
                                    depth + 1,
                                )?);
                            }
                            "SortConfiguration" => {
                                builder = builder.set_sort_configuration(
                                    crate::protocol_serde::shape_plugin_visual_sort_configuration::de_plugin_visual_sort_configuration(
                                        tokens,
                                        _value,
                                        depth + 1,
                                    )?,
                                );
                            }
                            _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
                        }
                    }
                    other => {
                        return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
                            "expected object key or end object, found: {other:?}"
                        )))
                    }
                }
            }
            Ok(Some(builder.build()))
        }
        _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
            "expected start object or null",
        )),
    }
}