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§fn eq(&self, other: &StructSignature) -> bool
fn eq(&self, other: &StructSignature) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.