pub struct WizardPromptRefs<'a> {
pub question: &'a TextComponent,
pub entry: &'a TextEntryComponent,
pub selector: &'a SelectorComponent,
pub hint: &'a HintComponent,
pub timer_bar: &'a TimerBarComponent,
}Expand description
References to wizard prompt widgets for render_wizard_prompt_layer.
Fields§
§question: &'a TextComponent§entry: &'a TextEntryComponent§selector: &'a SelectorComponent§hint: &'a HintComponent§timer_bar: &'a TimerBarComponentTrait Implementations§
Source§impl<'a> Clone for WizardPromptRefs<'a>
impl<'a> Clone for WizardPromptRefs<'a>
Source§fn clone(&self) -> WizardPromptRefs<'a>
fn clone(&self) -> WizardPromptRefs<'a>
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 moreimpl<'a> Copy for WizardPromptRefs<'a>
Auto Trait Implementations§
impl<'a> Freeze for WizardPromptRefs<'a>
impl<'a> RefUnwindSafe for WizardPromptRefs<'a>
impl<'a> Send for WizardPromptRefs<'a>
impl<'a> Sync for WizardPromptRefs<'a>
impl<'a> Unpin for WizardPromptRefs<'a>
impl<'a> UnsafeUnpin for WizardPromptRefs<'a>
impl<'a> UnwindSafe for WizardPromptRefs<'a>
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