pub struct BuildState {
pub root: PathBuf,
pub build_dir: PathBuf,
pub manifest: BundleManifest,
pub lock: BundleLock,
pub bundle_yaml: String,
pub resolved_files: Vec<(String, String)>,
pub setup_files: Vec<(String, String)>,
pub asset_files: Vec<(String, Vec<u8>)>,
}Fields§
§root: PathBuf§build_dir: PathBuf§manifest: BundleManifest§lock: BundleLock§bundle_yaml: String§resolved_files: Vec<(String, String)>§setup_files: Vec<(String, String)>§asset_files: Vec<(String, Vec<u8>)>Trait Implementations§
Source§impl Clone for BuildState
impl Clone for BuildState
Source§fn clone(&self) -> BuildState
fn clone(&self) -> BuildState
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 BuildState
impl RefUnwindSafe for BuildState
impl Send for BuildState
impl Sync for BuildState
impl Unpin for BuildState
impl UnsafeUnpin for BuildState
impl UnwindSafe for BuildState
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