questions converter: remove src clone

This commit is contained in:
Dmitry Belyaev 2023-08-14 12:21:14 +03:00
parent 31c02ae8ef
commit c326fc59d3
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
1 changed files with 4 additions and 5 deletions

View File

@ -117,11 +117,10 @@ pub mod convert_common {
impl From<SourceQuestionsBatch> for Vec<Question> {
fn from(src: SourceQuestionsBatch) -> Self {
let mut result: Vec<Question> = src
.questions
.iter()
.map(|item| item.clone().into())
.collect();
let mut src = src;
let mut questions: Vec<SourceQuestion> = vec![];
std::mem::swap(&mut src.questions, &mut questions);
let mut result: Vec<Question> = questions.into_iter().map(|item| item.into()).collect();
let batch_info = BatchInfo::from(src);
result.iter_mut().for_each(|question| {
question.batch_info = batch_info.clone();