pub struct ChoiceView {
pub name: String,
pub prompt: String,
pub default: String,
pub options: Vec<ChoiceOptionView>,
}Expand description
A single-select [[choice]]: pick exactly one option.
Fields§
§name: String§prompt: String§default: String§options: Vec<ChoiceOptionView>Trait Implementations§
Source§impl Clone for ChoiceView
impl Clone for ChoiceView
Source§fn clone(&self) -> ChoiceView
fn clone(&self) -> ChoiceView
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 moreSource§impl Debug for ChoiceView
impl Debug for ChoiceView
Source§impl<'de> Deserialize<'de> for ChoiceView
impl<'de> Deserialize<'de> for ChoiceView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChoiceView
impl RefUnwindSafe for ChoiceView
impl Send for ChoiceView
impl Sync for ChoiceView
impl Unpin for ChoiceView
impl UnsafeUnpin for ChoiceView
impl UnwindSafe for ChoiceView
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