#[non_exhaustive]pub struct DynamicFacetSpec {
pub mode: Mode,
/* private fields */
}Expand description
The specifications of dynamically generated facets.
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.mode: ModeMode of the DynamicFacet feature. Defaults to Mode.DISABLED if it’s unset.
Implementations§
Trait Implementations§
Source§impl Clone for DynamicFacetSpec
impl Clone for DynamicFacetSpec
Source§fn clone(&self) -> DynamicFacetSpec
fn clone(&self) -> DynamicFacetSpec
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 moreSource§impl Debug for DynamicFacetSpec
impl Debug for DynamicFacetSpec
Source§impl Default for DynamicFacetSpec
impl Default for DynamicFacetSpec
Source§fn default() -> DynamicFacetSpec
fn default() -> DynamicFacetSpec
Returns the “default value” for a type. Read more
Source§impl Message for DynamicFacetSpec
impl Message for DynamicFacetSpec
Source§impl PartialEq for DynamicFacetSpec
impl PartialEq for DynamicFacetSpec
impl StructuralPartialEq for DynamicFacetSpec
Auto Trait Implementations§
impl Freeze for DynamicFacetSpec
impl RefUnwindSafe for DynamicFacetSpec
impl Send for DynamicFacetSpec
impl Sync for DynamicFacetSpec
impl Unpin for DynamicFacetSpec
impl UnsafeUnpin for DynamicFacetSpec
impl UnwindSafe for DynamicFacetSpec
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