pub struct MultiResourceOutputOptionsQuery {
pub include_deleted: bool,
pub include_metadata: bool,
pub only_deleted: bool,
}Expand description
MultiResourceOutputOptionsQuery
JSON schema
{
"type": "object",
"required": [
"include_deleted",
"include_metadata",
"only_deleted"
],
"properties": {
"include_deleted": {
"type": "boolean"
},
"include_metadata": {
"type": "boolean"
},
"only_deleted": {
"type": "boolean"
}
}
}Fields§
§include_deleted: bool§include_metadata: bool§only_deleted: boolTrait Implementations§
Source§impl Clone for MultiResourceOutputOptionsQuery
impl Clone for MultiResourceOutputOptionsQuery
Source§fn clone(&self) -> MultiResourceOutputOptionsQuery
fn clone(&self) -> MultiResourceOutputOptionsQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for MultiResourceOutputOptionsQuery
impl<'de> Deserialize<'de> for MultiResourceOutputOptionsQuery
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
Auto Trait Implementations§
impl Freeze for MultiResourceOutputOptionsQuery
impl RefUnwindSafe for MultiResourceOutputOptionsQuery
impl Send for MultiResourceOutputOptionsQuery
impl Sync for MultiResourceOutputOptionsQuery
impl Unpin for MultiResourceOutputOptionsQuery
impl UnsafeUnpin for MultiResourceOutputOptionsQuery
impl UnwindSafe for MultiResourceOutputOptionsQuery
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