pub struct Lock {
pub content_hash: Option<String>,
pub packages: Vec<LockPackage>,
pub packages_dev: Vec<LockPackage>,
pub platform: Vec<(String, String)>,
pub platform_dev: Vec<(String, String)>,
pub plugin_api_version: Option<String>,
pub aliases: Vec<Value>,
}Fields§
§content_hash: Option<String>§packages: Vec<LockPackage>§packages_dev: Vec<LockPackage>§platform: Vec<(String, String)>Project platform constraints (php, ext-, lib-) -> constraint.
platform_dev: Vec<(String, String)>§plugin_api_version: Option<String>§aliases: Vec<Value>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lock
impl RefUnwindSafe for Lock
impl Send for Lock
impl Sync for Lock
impl Unpin for Lock
impl UnsafeUnpin for Lock
impl UnwindSafe for Lock
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