[][src]Enum monaco::sys::editor::IEditorOptionsMultiCursorPaste

pub enum IEditorOptionsMultiCursorPaste {
    Spread,
    Full,
}

Variants

Spread
Full

Implementations

impl IEditorOptionsMultiCursorPaste[src]

pub fn from_value(val: &str) -> Option<Self>[src]

Get the variant for the value. Returns None if the value isn't part of the enum.

pub fn to_value(&self) -> &'static str[src]

Get the value of the variant.

Trait Implementations

impl Clone for IEditorOptionsMultiCursorPaste[src]

impl Copy for IEditorOptionsMultiCursorPaste[src]

impl Debug for IEditorOptionsMultiCursorPaste[src]

impl Eq for IEditorOptionsMultiCursorPaste[src]

impl FromWasmAbi for IEditorOptionsMultiCursorPaste[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for IEditorOptionsMultiCursorPaste[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl OptionFromWasmAbi for IEditorOptionsMultiCursorPaste[src]

impl OptionIntoWasmAbi for IEditorOptionsMultiCursorPaste[src]

impl PartialEq<IEditorOptionsMultiCursorPaste> for IEditorOptionsMultiCursorPaste[src]

impl StructuralEq for IEditorOptionsMultiCursorPaste[src]

impl StructuralPartialEq for IEditorOptionsMultiCursorPaste[src]

impl WasmDescribe for IEditorOptionsMultiCursorPaste[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.