Struct wick_interface_types::StructSignature
source · pub struct StructSignature {
pub name: String,
pub fields: Vec<Field>,
}
Expand description
Signatures of struct-like type definitions.
Fields§
§name: String
The name of the struct.
fields: Vec<Field>
The fields in this struct.
Implementations§
Trait Implementations§
source§impl Clone for StructSignature
impl Clone for StructSignature
source§fn clone(&self) -> StructSignature
fn clone(&self) -> StructSignature
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 Debug for StructSignature
impl Debug for StructSignature
source§impl Default for StructSignature
impl Default for StructSignature
source§fn default() -> StructSignature
fn default() -> StructSignature
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StructSignature
impl<'de> Deserialize<'de> for StructSignature
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 PartialEq<StructSignature> for StructSignature
impl PartialEq<StructSignature> for StructSignature
source§impl Serialize for StructSignature
impl Serialize for StructSignature
impl Eq for StructSignature
impl StructuralEq for StructSignature
Auto Trait Implementations§
impl RefUnwindSafe for StructSignature
impl Send for StructSignature
impl Sync for StructSignature
impl Unpin for StructSignature
impl UnwindSafe for StructSignature
Blanket Implementations§
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.