pub enum SplitStrategy {
SingleFile,
ByRoute,
ByComponent,
Custom,
}Expand description
代码分割策略枚举
Variants§
SingleFile
单文件打包,不进行代码分割
ByRoute
按路由分割,每个路由生成一个 chunk
ByComponent
按组件分割,每个组件生成一个 chunk
Custom
自定义分割策略
Trait Implementations§
Source§impl Clone for SplitStrategy
impl Clone for SplitStrategy
Source§fn clone(&self) -> SplitStrategy
fn clone(&self) -> SplitStrategy
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 SplitStrategy
impl Debug for SplitStrategy
Source§impl PartialEq for SplitStrategy
impl PartialEq for SplitStrategy
impl Eq for SplitStrategy
impl StructuralPartialEq for SplitStrategy
Auto Trait Implementations§
impl Freeze for SplitStrategy
impl RefUnwindSafe for SplitStrategy
impl Send for SplitStrategy
impl Sync for SplitStrategy
impl Unpin for SplitStrategy
impl UnsafeUnpin for SplitStrategy
impl UnwindSafe for SplitStrategy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more