Set the AI vendor.
(mut self, vendor: AIVendor)
| 35 | impl ProvenanceBuilder { |
| 36 | /// Set the AI vendor. |
| 37 | pub fn vendor(mut self, vendor: AIVendor) -> Self { |
| 38 | self.vendor = Some(vendor); |
| 39 | self |
| 40 | } |
| 41 | |
| 42 | /// Set the vendor from a string. |
| 43 | pub fn vendor_str(mut self, vendor: &str) -> Self { |
no outgoing calls