pub struct QueryCurrentTypeDefsOptsBuilder { /* private fields */ }Expand description
Builder for QueryCurrentTypeDefsOpts.
Implementations§
Source§impl QueryCurrentTypeDefsOptsBuilder
impl QueryCurrentTypeDefsOptsBuilder
Sourcepub fn hide_core<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn hide_core<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
Strip core API functions from the Query type, leaving only module-sourced functions (constructors, entrypoint proxies, etc.). Core types (Container, Directory, etc.) are kept so return types and method chaining still work.
Sourcepub fn build(
&self,
) -> Result<QueryCurrentTypeDefsOpts, QueryCurrentTypeDefsOptsBuilderError>
pub fn build( &self, ) -> Result<QueryCurrentTypeDefsOpts, QueryCurrentTypeDefsOptsBuilderError>
Trait Implementations§
Source§impl Clone for QueryCurrentTypeDefsOptsBuilder
impl Clone for QueryCurrentTypeDefsOptsBuilder
Source§fn clone(&self) -> QueryCurrentTypeDefsOptsBuilder
fn clone(&self) -> QueryCurrentTypeDefsOptsBuilder
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 moreAuto Trait Implementations§
impl Freeze for QueryCurrentTypeDefsOptsBuilder
impl RefUnwindSafe for QueryCurrentTypeDefsOptsBuilder
impl Send for QueryCurrentTypeDefsOptsBuilder
impl Sync for QueryCurrentTypeDefsOptsBuilder
impl Unpin for QueryCurrentTypeDefsOptsBuilder
impl UnsafeUnpin for QueryCurrentTypeDefsOptsBuilder
impl UnwindSafe for QueryCurrentTypeDefsOptsBuilder
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