pub struct ProtocolFeaturesSupported {
pub deep_operations: Option<DeepOperations>,
pub excerpt_query: Option<bool>,
pub expand_query: Option<Expand>,
pub filter_query: Option<bool>,
pub multiple_http_requests: Option<bool>,
pub only_member_query: Option<bool>,
pub select_query: Option<bool>,
}
Expand description
The information about protocol features that the service supports.
Fields§
§deep_operations: Option<DeepOperations>
§excerpt_query: Option<bool>
An indication of whether the service supports the excerpt query parameter.
expand_query: Option<Expand>
§filter_query: Option<bool>
An indication of whether the service supports the $filter query parameter.
multiple_http_requests: Option<bool>
An indication of whether the service supports multiple outstanding HTTP requests.
only_member_query: Option<bool>
An indication of whether the service supports the only query parameter.
select_query: Option<bool>
An indication of whether the service supports the $select query parameter.
Trait Implementations§
source§impl Clone for ProtocolFeaturesSupported
impl Clone for ProtocolFeaturesSupported
source§fn clone(&self) -> ProtocolFeaturesSupported
fn clone(&self) -> ProtocolFeaturesSupported
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 ProtocolFeaturesSupported
impl Debug for ProtocolFeaturesSupported
source§impl Default for ProtocolFeaturesSupported
impl Default for ProtocolFeaturesSupported
source§fn default() -> ProtocolFeaturesSupported
fn default() -> ProtocolFeaturesSupported
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ProtocolFeaturesSupported
impl<'de> Deserialize<'de> for ProtocolFeaturesSupported
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