pub struct WebSearchApproximateLocationArgs { /* private fields */ }Expand description
Builder for WebSearchApproximateLocation.
Implementations§
Source§impl WebSearchApproximateLocationArgs
impl WebSearchApproximateLocationArgs
Sourcepub fn type<VALUE: Into<WebSearchApproximateLocationType>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn type<VALUE: Into<WebSearchApproximateLocationType>>( &mut self, value: VALUE, ) -> &mut Self
The type of location approximation. Always approximate.
Sourcepub fn city<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn city<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Free text input for the city of the user, e.g. San Francisco.
Sourcepub fn country<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn country<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The two-letter ISO country code of the user,
e.g. US.
Sourcepub fn region<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn region<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Free text input for the region of the user, e.g. California.
Sourcepub fn timezone<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn timezone<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The IANA timezone of the user, e.g.
America/Los_Angeles.
Sourcepub fn build(&self) -> Result<WebSearchApproximateLocation, OpenAIError>
pub fn build(&self) -> Result<WebSearchApproximateLocation, OpenAIError>
Trait Implementations§
Source§impl Clone for WebSearchApproximateLocationArgs
impl Clone for WebSearchApproximateLocationArgs
Source§fn clone(&self) -> WebSearchApproximateLocationArgs
fn clone(&self) -> WebSearchApproximateLocationArgs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WebSearchApproximateLocationArgs
impl RefUnwindSafe for WebSearchApproximateLocationArgs
impl Send for WebSearchApproximateLocationArgs
impl Sync for WebSearchApproximateLocationArgs
impl Unpin for WebSearchApproximateLocationArgs
impl UnwindSafe for WebSearchApproximateLocationArgs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more