Builder: set the identifier.
(mut self, id: impl Into<String>)
| 103 | |
| 104 | /// Builder: set the identifier. |
| 105 | pub fn with_identifier(mut self, id: impl Into<String>) -> Self { |
| 106 | self.identifier = Some(id.into()); |
| 107 | self |
| 108 | } |
| 109 | |
| 110 | /// Builder: set the view. |
| 111 | pub fn with_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls