pub struct TypeConcreteDeclaration {
pub type_field: String,
pub concrete_type_id: ConcreteTypeId,
pub metadata_type_id: Option<MetadataTypeId>,
pub type_arguments: Option<Vec<ConcreteTypeId>>,
pub alias_of: Option<ConcreteTypeId>,
}Fields§
§type_field: String§concrete_type_id: ConcreteTypeId§metadata_type_id: Option<MetadataTypeId>§type_arguments: Option<Vec<ConcreteTypeId>>§alias_of: Option<ConcreteTypeId>Trait Implementations§
Source§impl Clone for TypeConcreteDeclaration
impl Clone for TypeConcreteDeclaration
Source§fn clone(&self) -> TypeConcreteDeclaration
fn clone(&self) -> TypeConcreteDeclaration
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 Debug for TypeConcreteDeclaration
impl Debug for TypeConcreteDeclaration
Source§impl Default for TypeConcreteDeclaration
impl Default for TypeConcreteDeclaration
Source§fn default() -> TypeConcreteDeclaration
fn default() -> TypeConcreteDeclaration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TypeConcreteDeclaration
impl<'de> Deserialize<'de> for TypeConcreteDeclaration
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 for TypeConcreteDeclaration
impl PartialEq for TypeConcreteDeclaration
Source§impl Serialize for TypeConcreteDeclaration
impl Serialize for TypeConcreteDeclaration
impl Eq for TypeConcreteDeclaration
impl StructuralPartialEq for TypeConcreteDeclaration
Auto Trait Implementations§
impl Freeze for TypeConcreteDeclaration
impl RefUnwindSafe for TypeConcreteDeclaration
impl Send for TypeConcreteDeclaration
impl Sync for TypeConcreteDeclaration
impl Unpin for TypeConcreteDeclaration
impl UnwindSafe for TypeConcreteDeclaration
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more