Skip to main content

DynamicDefault

Struct DynamicDefault 

Source
pub struct DynamicDefault { /* private fields */ }
Expand description

An application-supplied dynamic default with an explicit semantic revision, computed from earlier answers instead of declared statically.

Real interactive flows need context-dependent defaults — a field whose sensible default depends on how an earlier question was answered. The closure receives an EarlierAnswers view of the decoded answers that precede this field in the same scope chain and returns the default text, which then runs through the exact same kind / constraint / validator pipeline as any submitted answer, identically across interactive, file, and stdin collection.

Because closure semantics cannot be fingerprinted, the application declares an explicit revision string that enters the fingerprint in place of a static default value — exactly the FieldValidator revision contract: bump the revision whenever the computed defaults change, and previously rendered sheets are invalidated like any other semantic change. The closure itself never affects the fingerprint.

§Dependency contract

Like a condition, a dynamic default may only depend on fields declared before its own field, in the same group or an enclosing one. Construction cannot introspect the closure to enforce this, so the walk order defines the failure behavior instead: the EarlierAnswers view resolves lookups against the answers decoded so far, and a later-declared, out-of-scope, unknown, unanswered, or inactive field simply reads as None. The closure must return a usable default for every combination of Nones it can observe.

Implementations§

Source§

impl DynamicDefault

Source

pub fn new( revision: impl Into<String>, compute: impl Fn(&EarlierAnswers<'_>) -> String + Send + Sync + 'static, ) -> Self

Create a dynamic default with a semantic revision and a compute closure that derives the default text from earlier answers.

Source

pub fn revision(&self) -> &str

The semantic revision that participates in the fingerprint.

Trait Implementations§

Source§

impl Clone for DynamicDefault

Source§

fn clone(&self) -> DynamicDefault

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DynamicDefault

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for DynamicDefault

Source§

impl PartialEq for DynamicDefault

Equality compares the semantic revision only; the closure itself is not comparable, and the revision is the declared semantic identity.

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.