(mut self, category: impl Into<String>)
| 213 | /// Set the category. |
| 214 | #[must_use] |
| 215 | pub fn with_category(mut self, category: impl Into<String>) -> Self { |
| 216 | self.category = Some(category.into()); |
| 217 | self |
| 218 | } |
| 219 | |
| 220 | /// Returns true if this learning has a graph anchor. |
| 221 | pub fn is_anchored(&self) -> bool { |
no outgoing calls