pub struct PolarsConnectionSettings200Response {
pub endpoint_url: String,
pub key: Option<String>,
pub secret: Option<String>,
pub use_ssl: bool,
pub cache_regions: bool,
pub client_kwargs: Box<PolarsClientKwargs>,
}
Fields§
§endpoint_url: String
§key: Option<String>
§secret: Option<String>
§use_ssl: bool
§cache_regions: bool
§client_kwargs: Box<PolarsClientKwargs>
Implementations§
Source§impl PolarsConnectionSettings200Response
impl PolarsConnectionSettings200Response
pub fn new( endpoint_url: String, use_ssl: bool, cache_regions: bool, client_kwargs: PolarsClientKwargs, ) -> PolarsConnectionSettings200Response
Trait Implementations§
Source§impl Clone for PolarsConnectionSettings200Response
impl Clone for PolarsConnectionSettings200Response
Source§fn clone(&self) -> PolarsConnectionSettings200Response
fn clone(&self) -> PolarsConnectionSettings200Response
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 moreSource§impl Default for PolarsConnectionSettings200Response
impl Default for PolarsConnectionSettings200Response
Source§fn default() -> PolarsConnectionSettings200Response
fn default() -> PolarsConnectionSettings200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PolarsConnectionSettings200Response
impl<'de> Deserialize<'de> for PolarsConnectionSettings200Response
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PolarsConnectionSettings200Response
impl PartialEq for PolarsConnectionSettings200Response
Source§fn eq(&self, other: &PolarsConnectionSettings200Response) -> bool
fn eq(&self, other: &PolarsConnectionSettings200Response) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PolarsConnectionSettings200Response
Auto Trait Implementations§
impl Freeze for PolarsConnectionSettings200Response
impl RefUnwindSafe for PolarsConnectionSettings200Response
impl Send for PolarsConnectionSettings200Response
impl Sync for PolarsConnectionSettings200Response
impl Unpin for PolarsConnectionSettings200Response
impl UnwindSafe for PolarsConnectionSettings200Response
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