pub struct ConvertOption {
pub get_builtin_component: fn(&str) -> Option<RuntimeHelper>,
pub is_dev: bool,
pub directive_converters: FxHashMap<&'static str, DirConvertFn>,
}
Fields§
§get_builtin_component: fn(&str) -> Option<RuntimeHelper>
For platform developers. Registers platform specific components written in JS. e.g. transition, transition-group. Components that require code in Vue runtime.
is_dev: bool
§directive_converters: FxHashMap<&'static str, DirConvertFn>
Trait Implementations§
Source§impl Clone for ConvertOption
impl Clone for ConvertOption
Source§fn clone(&self) -> ConvertOption
fn clone(&self) -> ConvertOption
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 ConvertOption
impl RefUnwindSafe for ConvertOption
impl Send for ConvertOption
impl Sync for ConvertOption
impl Unpin for ConvertOption
impl UnwindSafe for ConvertOption
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