pub struct ClientDataProviderQuery {
pub data_provider_query: DataProviderQuery,
pub query_service_instance_type: Option<String>,
}Expand description
A client data provider are the details needed to make the data provider request from the client.
Fields§
§data_provider_query: DataProviderQuery§query_service_instance_type: Option<String>The Id of the service instance type that should be communicated with in order to resolve the data providers from the client given the query values.
Implementations§
Trait Implementations§
Source§impl Clone for ClientDataProviderQuery
impl Clone for ClientDataProviderQuery
Source§fn clone(&self) -> ClientDataProviderQuery
fn clone(&self) -> ClientDataProviderQuery
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 ClientDataProviderQuery
impl Debug for ClientDataProviderQuery
Source§impl Default for ClientDataProviderQuery
impl Default for ClientDataProviderQuery
Source§fn default() -> ClientDataProviderQuery
fn default() -> ClientDataProviderQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClientDataProviderQuery
impl<'de> Deserialize<'de> for ClientDataProviderQuery
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 ClientDataProviderQuery
impl PartialEq for ClientDataProviderQuery
Source§impl Serialize for ClientDataProviderQuery
impl Serialize for ClientDataProviderQuery
impl StructuralPartialEq for ClientDataProviderQuery
Auto Trait Implementations§
impl Freeze for ClientDataProviderQuery
impl RefUnwindSafe for ClientDataProviderQuery
impl Send for ClientDataProviderQuery
impl Sync for ClientDataProviderQuery
impl Unpin for ClientDataProviderQuery
impl UnwindSafe for ClientDataProviderQuery
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