pub struct AmbiguityQuestion {
pub field_path: String,
pub question: String,
pub options: Vec<String>,
pub default: Option<String>,
}Expand description
A field that the repair pipeline could not fix automatically.
Fields§
§field_path: String§question: String§options: Vec<String>§default: Option<String>Trait Implementations§
Source§impl Clone for AmbiguityQuestion
impl Clone for AmbiguityQuestion
Source§fn clone(&self) -> AmbiguityQuestion
fn clone(&self) -> AmbiguityQuestion
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 AmbiguityQuestion
impl Debug for AmbiguityQuestion
Source§impl<'de> Deserialize<'de> for AmbiguityQuestion
impl<'de> Deserialize<'de> for AmbiguityQuestion
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 AmbiguityQuestion
impl RefUnwindSafe for AmbiguityQuestion
impl Send for AmbiguityQuestion
impl Sync for AmbiguityQuestion
impl Unpin for AmbiguityQuestion
impl UnsafeUnpin for AmbiguityQuestion
impl UnwindSafe for AmbiguityQuestion
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