pub struct BindingQueryOptions {
pub include_hidden: bool,
pub fallback_node_size: Option<CanvasSize>,
}Expand description
Options controlling runtime binding queries.
Fields§
§fallback_node_size: Option<CanvasSize>Implementations§
Source§impl BindingQueryOptions
impl BindingQueryOptions
pub fn with_fallback_node_size( self, fallback_node_size: Option<CanvasSize>, ) -> Self
Trait Implementations§
Source§impl Clone for BindingQueryOptions
impl Clone for BindingQueryOptions
Source§fn clone(&self) -> BindingQueryOptions
fn clone(&self) -> BindingQueryOptions
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 moreimpl Copy for BindingQueryOptions
Source§impl Debug for BindingQueryOptions
impl Debug for BindingQueryOptions
Source§impl Default for BindingQueryOptions
impl Default for BindingQueryOptions
Source§fn default() -> BindingQueryOptions
fn default() -> BindingQueryOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for BindingQueryOptions
impl PartialEq for BindingQueryOptions
Source§fn eq(&self, other: &BindingQueryOptions) -> bool
fn eq(&self, other: &BindingQueryOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BindingQueryOptions
Auto Trait Implementations§
impl Freeze for BindingQueryOptions
impl RefUnwindSafe for BindingQueryOptions
impl Send for BindingQueryOptions
impl Sync for BindingQueryOptions
impl Unpin for BindingQueryOptions
impl UnsafeUnpin for BindingQueryOptions
impl UnwindSafe for BindingQueryOptions
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