Struct infinitree::fields::intent::Intent
source · #[non_exhaustive]pub struct Intent<T> {
pub name: String,
pub strategy: T,
}
Expand description
A wrapper to allow working with trait objects and impl Trait
types when accessing the index field.
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.name: String
The stringy name of the field that’s being accessed. This MUST be unique within the index.
strategy: T
The strategy for the given access that’s to be executed.