Struct wasmer_deploy_schema::schema::Entity
source · pub struct Entity<D, C = Value> {
pub meta: EntityMeta,
pub spec: D,
pub children: Option<Vec<C>>,
}Expand description
An entity with associated data.
Fields§
§meta: EntityMetaCommon entity metadata.
spec: DSpecification of the entity.
children: Option<Vec<C>>Inline child entity specs.
Implementations§
Trait Implementations§
source§impl<'de, D, C> Deserialize<'de> for Entity<D, C>where
D: Deserialize<'de>,
C: Deserialize<'de>,
impl<'de, D, C> Deserialize<'de> for Entity<D, C>where D: Deserialize<'de>, C: Deserialize<'de>,
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<D: JsonSchema, C: JsonSchema> JsonSchema for Entity<D, C>
impl<D: JsonSchema, C: JsonSchema> JsonSchema for Entity<D, C>
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &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<D: PartialEq, C: PartialEq> PartialEq<Entity<D, C>> for Entity<D, C>
impl<D: PartialEq, C: PartialEq> PartialEq<Entity<D, C>> for Entity<D, C>
impl<D: Eq, C: Eq> Eq for Entity<D, C>
impl<D, C> StructuralEq for Entity<D, C>
impl<D, C> StructuralPartialEq for Entity<D, C>
Auto Trait Implementations§
impl<D, C> RefUnwindSafe for Entity<D, C>where C: RefUnwindSafe, D: RefUnwindSafe,
impl<D, C> Send for Entity<D, C>where C: Send, D: Send,
impl<D, C> Sync for Entity<D, C>where C: Sync, D: Sync,
impl<D, C> Unpin for Entity<D, C>where C: Unpin, D: Unpin,
impl<D, C> UnwindSafe for Entity<D, C>where C: UnwindSafe, D: UnwindSafe,
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.