pub struct CustomCommandModal {
pub step: CustomModalStep,
pub picker_index: usize,
pub paste_mode: bool,
pub paste_input: String,
pub editor_index: usize,
pub draft: Option<CustomCommandDraft>,
pub error: Option<String>,
}Fields§
§step: CustomModalStep§picker_index: usize§paste_mode: bool§paste_input: String§editor_index: usize§draft: Option<CustomCommandDraft>§error: Option<String>Trait Implementations§
Source§impl Clone for CustomCommandModal
impl Clone for CustomCommandModal
Source§fn clone(&self) -> CustomCommandModal
fn clone(&self) -> CustomCommandModal
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 moreAuto Trait Implementations§
impl Freeze for CustomCommandModal
impl RefUnwindSafe for CustomCommandModal
impl Send for CustomCommandModal
impl Sync for CustomCommandModal
impl Unpin for CustomCommandModal
impl UnsafeUnpin for CustomCommandModal
impl UnwindSafe for CustomCommandModal
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