#[non_exhaustive]pub struct GetGsaElibraryContractOptions {
pub shape: Option<String>,
pub flat: bool,
pub flat_lists: bool,
}Expand description
Options for Client::get_gsa_elibrary_contract.
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 GetGsaElibraryContractOptions
impl GetGsaElibraryContractOptions
Sourcepub fn builder() -> GetGsaElibraryContractOptionsBuilder
pub fn builder() -> GetGsaElibraryContractOptionsBuilder
Create an instance of GetGsaElibraryContractOptions using the builder syntax
Trait Implementations§
Source§impl Clone for GetGsaElibraryContractOptions
impl Clone for GetGsaElibraryContractOptions
Source§fn clone(&self) -> GetGsaElibraryContractOptions
fn clone(&self) -> GetGsaElibraryContractOptions
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 Default for GetGsaElibraryContractOptions
impl Default for GetGsaElibraryContractOptions
Source§fn default() -> GetGsaElibraryContractOptions
fn default() -> GetGsaElibraryContractOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetGsaElibraryContractOptions
impl PartialEq for GetGsaElibraryContractOptions
Source§fn eq(&self, other: &GetGsaElibraryContractOptions) -> bool
fn eq(&self, other: &GetGsaElibraryContractOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GetGsaElibraryContractOptions
impl StructuralPartialEq for GetGsaElibraryContractOptions
Auto Trait Implementations§
impl Freeze for GetGsaElibraryContractOptions
impl RefUnwindSafe for GetGsaElibraryContractOptions
impl Send for GetGsaElibraryContractOptions
impl Sync for GetGsaElibraryContractOptions
impl Unpin for GetGsaElibraryContractOptions
impl UnsafeUnpin for GetGsaElibraryContractOptions
impl UnwindSafe for GetGsaElibraryContractOptions
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