pub struct BoxSetInfoRemoteSearchQuery {
pub include_disabled_providers: Option<bool>,
pub item_id: Option<Uuid>,
pub search_info: Option<BoxSetInfo>,
pub search_provider_name: Option<String>,
}
Expand description
BoxSetInfoRemoteSearchQuery
JSON schema
{
"type": "object",
"properties": {
"IncludeDisabledProviders": {
"description": "Gets or sets a value indicating whether disabled
providers should be included.",
"type": "boolean"
},
"ItemId": {
"type": "string",
"format": "uuid"
},
"SearchInfo": {
"allOf": [
{
"$ref": "#/components/schemas/BoxSetInfo"
}
]
},
"SearchProviderName": {
"description": "Gets or sets the provider name to search within if
set.",
"type": [
"string",
"null"
]
}
},
"additionalProperties": false
}
Fields§
§include_disabled_providers: Option<bool>
Gets or sets a value indicating whether disabled providers should be included.
item_id: Option<Uuid>
§search_info: Option<BoxSetInfo>
§search_provider_name: Option<String>
Gets or sets the provider name to search within if set.
Implementations§
Trait Implementations§
Source§impl Clone for BoxSetInfoRemoteSearchQuery
impl Clone for BoxSetInfoRemoteSearchQuery
Source§fn clone(&self) -> BoxSetInfoRemoteSearchQuery
fn clone(&self) -> BoxSetInfoRemoteSearchQuery
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 Debug for BoxSetInfoRemoteSearchQuery
impl Debug for BoxSetInfoRemoteSearchQuery
Source§impl<'de> Deserialize<'de> for BoxSetInfoRemoteSearchQuery
impl<'de> Deserialize<'de> for BoxSetInfoRemoteSearchQuery
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 From<&BoxSetInfoRemoteSearchQuery> for BoxSetInfoRemoteSearchQuery
impl From<&BoxSetInfoRemoteSearchQuery> for BoxSetInfoRemoteSearchQuery
Source§fn from(value: &BoxSetInfoRemoteSearchQuery) -> Self
fn from(value: &BoxSetInfoRemoteSearchQuery) -> Self
Converts to this type from the input type.
Source§impl From<BoxSetInfoRemoteSearchQuery> for BoxSetInfoRemoteSearchQuery
impl From<BoxSetInfoRemoteSearchQuery> for BoxSetInfoRemoteSearchQuery
Source§fn from(value: BoxSetInfoRemoteSearchQuery) -> Self
fn from(value: BoxSetInfoRemoteSearchQuery) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BoxSetInfoRemoteSearchQuery> for BoxSetInfoRemoteSearchQuery
impl TryFrom<BoxSetInfoRemoteSearchQuery> for BoxSetInfoRemoteSearchQuery
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: BoxSetInfoRemoteSearchQuery) -> Result<Self, ConversionError>
fn try_from(value: BoxSetInfoRemoteSearchQuery) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for BoxSetInfoRemoteSearchQuery
impl RefUnwindSafe for BoxSetInfoRemoteSearchQuery
impl Send for BoxSetInfoRemoteSearchQuery
impl Sync for BoxSetInfoRemoteSearchQuery
impl Unpin for BoxSetInfoRemoteSearchQuery
impl UnwindSafe for BoxSetInfoRemoteSearchQuery
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