Builder: set the identifier.
(mut self, id: impl Into<String>)
| 86 | |
| 87 | /// Builder: set the identifier. |
| 88 | pub fn with_identifier(mut self, id: impl Into<String>) -> Self { |
| 89 | self.identifier = Some(id.into()); |
| 90 | self |
| 91 | } |
| 92 | |
| 93 | /// Builder: set the view. |
| 94 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls