pub struct BundleLock {Show 13 fields
pub schema_version: u32,
pub bundle_id: String,
pub requested_mode: String,
pub execution: String,
pub cache_policy: String,
pub tool_version: String,
pub build_format_version: String,
pub workspace_root: String,
pub lock_file: String,
pub catalogs: Vec<CatalogLockEntry>,
pub app_packs: Vec<DependencyLock>,
pub extension_providers: Vec<DependencyLock>,
pub setup_state_files: Vec<String>,
}Fields§
§schema_version: u32§bundle_id: String§requested_mode: String§execution: String§cache_policy: String§tool_version: String§build_format_version: String§workspace_root: String§lock_file: String§catalogs: Vec<CatalogLockEntry>§app_packs: Vec<DependencyLock>§extension_providers: Vec<DependencyLock>§setup_state_files: Vec<String>Trait Implementations§
Source§impl Clone for BundleLock
impl Clone for BundleLock
Source§fn clone(&self) -> BundleLock
fn clone(&self) -> BundleLock
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 BundleLock
impl Debug for BundleLock
Source§impl<'de> Deserialize<'de> for BundleLock
impl<'de> Deserialize<'de> for BundleLock
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BundleLock
impl PartialEq for BundleLock
Source§impl Serialize for BundleLock
impl Serialize for BundleLock
impl Eq for BundleLock
impl StructuralPartialEq for BundleLock
Auto Trait Implementations§
impl Freeze for BundleLock
impl RefUnwindSafe for BundleLock
impl Send for BundleLock
impl Sync for BundleLock
impl Unpin for BundleLock
impl UnsafeUnpin for BundleLock
impl UnwindSafe for BundleLock
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