Struct wasmer_deploy_schema::schema::FullEntity
source · pub struct FullEntity<D, S = (), C = Value> {
pub meta: EntityMeta,
pub spec: D,
pub children: Option<Vec<C>>,
pub state: Option<EntityState<S>>,
}Expand description
An entity with associated data, including state.
Fields§
§meta: EntityMetaCommon entity metadata.
spec: DSpecification of the entity.
children: Option<Vec<C>>Inline child entity specs.
state: Option<EntityState<S>>Trait Implementations§
source§impl<D: Clone, S: Clone, C: Clone> Clone for FullEntity<D, S, C>
impl<D: Clone, S: Clone, C: Clone> Clone for FullEntity<D, S, C>
source§fn clone(&self) -> FullEntity<D, S, C>
fn clone(&self) -> FullEntity<D, S, C>
Returns a copy 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, D, S, C> Deserialize<'de> for FullEntity<D, S, C>where
D: Deserialize<'de>,
S: Deserialize<'de>,
C: Deserialize<'de>,
impl<'de, D, S, C> Deserialize<'de> for FullEntity<D, S, C>where D: Deserialize<'de>, S: 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, S: JsonSchema, C: JsonSchema> JsonSchema for FullEntity<D, S, C>
impl<D: JsonSchema, S: JsonSchema, C: JsonSchema> JsonSchema for FullEntity<D, S, 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, S: PartialEq, C: PartialEq> PartialEq<FullEntity<D, S, C>> for FullEntity<D, S, C>
impl<D: PartialEq, S: PartialEq, C: PartialEq> PartialEq<FullEntity<D, S, C>> for FullEntity<D, S, C>
source§fn eq(&self, other: &FullEntity<D, S, C>) -> bool
fn eq(&self, other: &FullEntity<D, S, C>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<D, S, C> Serialize for FullEntity<D, S, C>where
D: Serialize,
S: Serialize,
C: Serialize,
impl<D, S, C> Serialize for FullEntity<D, S, C>where D: Serialize, S: Serialize, C: Serialize,
impl<D: Eq, S: Eq, C: Eq> Eq for FullEntity<D, S, C>
impl<D, S, C> StructuralEq for FullEntity<D, S, C>
impl<D, S, C> StructuralPartialEq for FullEntity<D, S, C>
Auto Trait Implementations§
impl<D, S, C> RefUnwindSafe for FullEntity<D, S, C>where C: RefUnwindSafe, D: RefUnwindSafe, S: RefUnwindSafe,
impl<D, S, C> Send for FullEntity<D, S, C>where C: Send, D: Send, S: Send,
impl<D, S, C> Sync for FullEntity<D, S, C>where C: Sync, D: Sync, S: Sync,
impl<D, S, C> Unpin for FullEntity<D, S, C>where C: Unpin, D: Unpin, S: Unpin,
impl<D, S, C> UnwindSafe for FullEntity<D, S, C>where C: UnwindSafe, D: UnwindSafe, S: 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.