(&self)
| 97 | Ok(SavedRequestData::Http(http)) |
| 98 | } |
| 99 | |
| 100 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 101 | pub struct CollectionFolderNode { |
| 102 | pub id: Uuid, |
| 103 | pub name: String, |
| 104 | #[serde(default = "default_expanded")] |
| 105 | pub expanded: bool, |
| 106 | #[serde(default)] |
| 107 | pub children: Vec<CollectionNode>, |
no outgoing calls