ruma-events 0.34.0

Serializable types for the events in the Matrix specification.
Documentation
//! `Deserialize` helpers for unstable poll answers (MSC3381).

use serde::Deserialize;

use super::{UnstablePollAnswer, UnstablePollAnswers};
use crate::poll::start::{PollAnswers, PollAnswersError};

#[derive(Debug, Default, Deserialize)]
pub(crate) struct UnstablePollAnswersDeHelper(Vec<UnstablePollAnswer>);

impl TryFrom<UnstablePollAnswersDeHelper> for UnstablePollAnswers {
    type Error = PollAnswersError;

    fn try_from(helper: UnstablePollAnswersDeHelper) -> Result<Self, Self::Error> {
        let mut answers = helper.0;
        answers.truncate(PollAnswers::MAX_LENGTH);
        UnstablePollAnswers::try_from(answers)
    }
}