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