pub struct WebcPackageVersionV1Alpha1Spec {
pub namespace: String,
pub name: String,
pub version: String,
pub webc_hash_sha256: String,
pub backend_package_id: Option<String>,
pub backend_id: Option<String>,
pub webc_manifest: Option<Value>,
pub download_url: Option<Url>,
pub is_private: bool,
}Fields§
§namespace: String§name: String§version: String§webc_hash_sha256: String§backend_package_id: Option<String>§backend_id: Option<String>§webc_manifest: Option<Value>§download_url: Option<Url>§is_private: boolIf the package is private or public.
Trait Implementations§
Source§impl Clone for WebcPackageVersionV1Alpha1Spec
impl Clone for WebcPackageVersionV1Alpha1Spec
Source§fn clone(&self) -> WebcPackageVersionV1Alpha1Spec
fn clone(&self) -> WebcPackageVersionV1Alpha1Spec
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<'de> Deserialize<'de> for WebcPackageVersionV1Alpha1Spec
impl<'de> Deserialize<'de> for WebcPackageVersionV1Alpha1Spec
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 EntityDescriptorConst for WebcPackageVersionV1Alpha1Spec
impl EntityDescriptorConst for WebcPackageVersionV1Alpha1Spec
const NAMESPACE: &'static str = "wasmer.io"
const NAME: &'static str = "PackageVersion"
const VERSION: &'static str = "1alpha1"
const KIND: &'static str = "wasmer.io/PackageVersion.v1alpha1"
Source§type Spec = WebcPackageVersionV1Alpha1Spec
type Spec = WebcPackageVersionV1Alpha1Spec
Entity specification.
fn json_schema() -> RootSchema
fn build_uri_str(name: &str) -> String
fn build_uri(name: &str) -> Result<EntityUri, EntityUriParseError>
Source§fn type_name() -> String
fn type_name() -> String
Build the name that is used for the EntityTypeSpec representing this type.
fn build_type_descriptor() -> Entity<EntityTypeSpec>where
Self: JsonSchema + Sized,
Source§impl JsonSchema for WebcPackageVersionV1Alpha1Spec
impl JsonSchema for WebcPackageVersionV1Alpha1Spec
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for WebcPackageVersionV1Alpha1Spec
impl PartialEq for WebcPackageVersionV1Alpha1Spec
Source§fn eq(&self, other: &WebcPackageVersionV1Alpha1Spec) -> bool
fn eq(&self, other: &WebcPackageVersionV1Alpha1Spec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WebcPackageVersionV1Alpha1Spec
impl StructuralPartialEq for WebcPackageVersionV1Alpha1Spec
Auto Trait Implementations§
impl Freeze for WebcPackageVersionV1Alpha1Spec
impl RefUnwindSafe for WebcPackageVersionV1Alpha1Spec
impl Send for WebcPackageVersionV1Alpha1Spec
impl Sync for WebcPackageVersionV1Alpha1Spec
impl Unpin for WebcPackageVersionV1Alpha1Spec
impl UnwindSafe for WebcPackageVersionV1Alpha1Spec
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.