pub enum InheritanceSpecifierBaseName {
UserDefinedTypeName(UserDefinedTypeName),
IdentifierPath(IdentifierPath),
}
Expand description
InheritanceSpecifierBaseName
JSON schema
{
"anyOf": [
{
"$ref": "#/definitions/UserDefinedTypeName"
},
{
"$ref": "#/definitions/IdentifierPath"
}
]
}
Variants§
UserDefinedTypeName(UserDefinedTypeName)
IdentifierPath(IdentifierPath)
Trait Implementations§
Source§impl Clone for InheritanceSpecifierBaseName
impl Clone for InheritanceSpecifierBaseName
Source§fn clone(&self) -> InheritanceSpecifierBaseName
fn clone(&self) -> InheritanceSpecifierBaseName
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 InheritanceSpecifierBaseName
impl Debug for InheritanceSpecifierBaseName
Source§impl<'de> Deserialize<'de> for InheritanceSpecifierBaseName
impl<'de> Deserialize<'de> for InheritanceSpecifierBaseName
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 From<&InheritanceSpecifierBaseName> for InheritanceSpecifierBaseName
impl From<&InheritanceSpecifierBaseName> for InheritanceSpecifierBaseName
Source§fn from(value: &InheritanceSpecifierBaseName) -> Self
fn from(value: &InheritanceSpecifierBaseName) -> Self
Converts to this type from the input type.
Source§impl From<IdentifierPath> for InheritanceSpecifierBaseName
impl From<IdentifierPath> for InheritanceSpecifierBaseName
Source§fn from(value: IdentifierPath) -> Self
fn from(value: IdentifierPath) -> Self
Converts to this type from the input type.
Source§impl From<UserDefinedTypeName> for InheritanceSpecifierBaseName
impl From<UserDefinedTypeName> for InheritanceSpecifierBaseName
Source§fn from(value: UserDefinedTypeName) -> Self
fn from(value: UserDefinedTypeName) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InheritanceSpecifierBaseName
impl RefUnwindSafe for InheritanceSpecifierBaseName
impl Send for InheritanceSpecifierBaseName
impl Sync for InheritanceSpecifierBaseName
impl Unpin for InheritanceSpecifierBaseName
impl UnwindSafe for InheritanceSpecifierBaseName
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