pub struct VariantPackResult {
pub output_dir: PathBuf,
pub manifest_path: PathBuf,
pub glb_paths: Vec<PathBuf>,
pub total_bytes: usize,
}Expand description
Result of writing a variant pack.
Fields§
§output_dir: PathBuf§manifest_path: PathBuf§glb_paths: Vec<PathBuf>§total_bytes: usizeAuto Trait Implementations§
impl Freeze for VariantPackResult
impl RefUnwindSafe for VariantPackResult
impl Send for VariantPackResult
impl Sync for VariantPackResult
impl Unpin for VariantPackResult
impl UnsafeUnpin for VariantPackResult
impl UnwindSafe for VariantPackResult
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> 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