pub struct PackageSet {
pub schema_version: &'static str,
pub platform_version: &'static str,
pub go_module: GoModuleCoordinate,
pub npm_packages: &'static [NpmPackageCoordinate],
pub rust_crates: &'static [RustCrateCoordinate],
pub contract_registry_version: &'static str,
pub contract_set_sha256: &'static str,
}Fields§
§schema_version: &'static str§platform_version: &'static str§go_module: GoModuleCoordinate§npm_packages: &'static [NpmPackageCoordinate]§rust_crates: &'static [RustCrateCoordinate]§contract_registry_version: &'static str§contract_set_sha256: &'static strTrait Implementations§
Source§impl Clone for PackageSet
impl Clone for PackageSet
Source§fn clone(&self) -> PackageSet
fn clone(&self) -> PackageSet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PackageSet
Source§impl Debug for PackageSet
impl Debug for PackageSet
impl Eq for PackageSet
Source§impl PartialEq for PackageSet
impl PartialEq for PackageSet
impl StructuralPartialEq for PackageSet
Auto Trait Implementations§
impl Freeze for PackageSet
impl RefUnwindSafe for PackageSet
impl Send for PackageSet
impl Sync for PackageSet
impl Unpin for PackageSet
impl UnsafeUnpin for PackageSet
impl UnwindSafe for PackageSet
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