1
2
3
4
5
6
7
8
9
10
11
12
13
use syn::Ident;
use crate::widgets::Properties;
use super::AssignInfo;
impl Properties {
pub(super) fn assign_stream<'a>(&'a self, info: &mut AssignInfo<'a>, sender_name: &'a Ident) {
for prop in &self.properties {
prop.assign_stream(info, sender_name);
}
}
}