1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
use core::fmt;
use std::collections::BTreeSet;
use aws_sdk_dynamodb::types::AttributeValue;
/// A set of unique string values for DynamoDB
///
/// <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html#HowItWorks.DataTypes.SetTypes>
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct StringSet(BTreeSet<String>);
impl StringSet {
pub fn new<T>(set: T) -> Self
where
T: Into<StringSet>,
{
set.into()
}
// pub fn new<I, T>(set: I) -> Self
// where
// I: IntoIterator<Item = T>,
// T: Into<String>,
// {
// set.into()
// }
// Intentionally not using `impl From<StringSet> for AttributeValue` because
// I don't want to make this a public API people rely on. The purpose of this
// crate is not to make creating `AttributeValues` easier. They should try
// `serde_dynamo`.
pub(super) fn into_attribute_value(self) -> AttributeValue {
AttributeValue::Ss(self.0.into_iter().collect())
}
}
impl<T> FromIterator<T> for StringSet
where
T: Into<String>,
{
fn from_iter<I>(iter: I) -> Self
where
I: IntoIterator<Item = T>,
{
Self(iter.into_iter().map(Into::into).collect())
}
}
impl<I, T> From<I> for StringSet
where
I: IntoIterator<Item = T>,
T: Into<String>,
{
fn from(values: I) -> Self {
Self::from_iter(values)
}
}
impl fmt::Display for StringSet {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_list().entries(self.0.iter()).finish()
}
}