(&mut self)
| 104 | #[serde(default = "default_expanded")] |
| 105 | pub expanded: bool, |
| 106 | #[serde(default)] |
| 107 | pub children: Vec<CollectionNode>, |
| 108 | } |
| 109 | |
| 110 | impl CollectionFolderNode { |
| 111 | pub fn new(name: &str) -> Self { |
| 112 | Self { |
| 113 | id: Uuid::new_v4(), |
| 114 | name: name.to_string(), |
no outgoing calls
no test coverage detected