pub struct AskUserResult {
pub answers: Option<Value>,
pub cancelled: bool,
}Expand description
Result sent through the oneshot channel when ask-user is resolved.
Fields§
§answers: Option<Value>§cancelled: boolTrait Implementations§
Source§impl Clone for AskUserResult
impl Clone for AskUserResult
Source§fn clone(&self) -> AskUserResult
fn clone(&self) -> AskUserResult
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 moreAuto Trait Implementations§
impl Freeze for AskUserResult
impl RefUnwindSafe for AskUserResult
impl Send for AskUserResult
impl Sync for AskUserResult
impl Unpin for AskUserResult
impl UnsafeUnpin for AskUserResult
impl UnwindSafe for AskUserResult
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