pub struct DataSourceDetails {
pub data_source_name: Option<String>,
pub data_source_url: Option<String>,
pub headers: Vec<AuthorizationHeader>,
pub parameters: Option<Value>,
pub resource_url: Option<String>,
pub result_selector: Option<String>,
}
Expand description
Fields§
§data_source_name: Option<String>
§data_source_url: Option<String>
§headers: Vec<AuthorizationHeader>
§parameters: Option<Value>
§resource_url: Option<String>
§result_selector: Option<String>
Implementations§
Trait Implementations§
source§impl Clone for DataSourceDetails
impl Clone for DataSourceDetails
source§fn clone(&self) -> DataSourceDetails
fn clone(&self) -> DataSourceDetails
Returns a copy 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 Debug for DataSourceDetails
impl Debug for DataSourceDetails
source§impl Default for DataSourceDetails
impl Default for DataSourceDetails
source§fn default() -> DataSourceDetails
fn default() -> DataSourceDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DataSourceDetails
impl<'de> Deserialize<'de> for DataSourceDetails
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 DataSourceDetails
impl PartialEq for DataSourceDetails
source§fn eq(&self, other: &DataSourceDetails) -> bool
fn eq(&self, other: &DataSourceDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DataSourceDetails
impl Serialize for DataSourceDetails
impl StructuralPartialEq for DataSourceDetails
Auto Trait Implementations§
impl Freeze for DataSourceDetails
impl RefUnwindSafe for DataSourceDetails
impl Send for DataSourceDetails
impl Sync for DataSourceDetails
impl Unpin for DataSourceDetails
impl UnwindSafe for DataSourceDetails
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