#[non_exhaustive]pub struct GetIDVOptions {
pub shape: Option<String>,
pub flat: bool,
pub flat_lists: bool,
}Expand description
Options for Client::get_idv.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.shape: Option<String>Shape selector. When empty, the server returns its comprehensive default.
flat: boolFlatten nested objects into dot-separated keys.
flat_lists: boolWhen flat=true, also flatten list-valued nested fields.
Implementations§
Source§impl GetIDVOptions
impl GetIDVOptions
Sourcepub fn builder() -> GetIDVOptionsBuilder
pub fn builder() -> GetIDVOptionsBuilder
Create an instance of GetIDVOptions using the builder syntax
Trait Implementations§
Source§impl Clone for GetIDVOptions
impl Clone for GetIDVOptions
Source§fn clone(&self) -> GetIDVOptions
fn clone(&self) -> GetIDVOptions
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 Debug for GetIDVOptions
impl Debug for GetIDVOptions
Source§impl Default for GetIDVOptions
impl Default for GetIDVOptions
Source§fn default() -> GetIDVOptions
fn default() -> GetIDVOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetIDVOptions
impl PartialEq for GetIDVOptions
Source§fn eq(&self, other: &GetIDVOptions) -> bool
fn eq(&self, other: &GetIDVOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GetIDVOptions
impl StructuralPartialEq for GetIDVOptions
Auto Trait Implementations§
impl Freeze for GetIDVOptions
impl RefUnwindSafe for GetIDVOptions
impl Send for GetIDVOptions
impl Sync for GetIDVOptions
impl Unpin for GetIDVOptions
impl UnsafeUnpin for GetIDVOptions
impl UnwindSafe for GetIDVOptions
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