pub enum TypePathOrEnum {
TypePath(TypePath),
Enum(IndexMap<String, EnumVariant>),
}Variants§
Implementations§
source§impl TypePathOrEnum
impl TypePathOrEnum
pub fn into_type(&self, field_name: &str) -> Type
pub fn generate_type_definition( &self, register_type: Type, field_name: &str ) -> Option<TokenStream>
Trait Implementations§
source§impl Clone for TypePathOrEnum
impl Clone for TypePathOrEnum
source§fn clone(&self) -> TypePathOrEnum
fn clone(&self) -> TypePathOrEnum
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 TypePathOrEnum
impl Debug for TypePathOrEnum
source§impl<'de> Deserialize<'de> for TypePathOrEnum
impl<'de> Deserialize<'de> for TypePathOrEnum
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 TypePathOrEnum
impl PartialEq for TypePathOrEnum
source§fn eq(&self, other: &TypePathOrEnum) -> bool
fn eq(&self, other: &TypePathOrEnum) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for TypePathOrEnum
impl StructuralEq for TypePathOrEnum
impl StructuralPartialEq for TypePathOrEnum
Auto Trait Implementations§
impl RefUnwindSafe for TypePathOrEnum
impl Send for TypePathOrEnum
impl Sync for TypePathOrEnum
impl Unpin for TypePathOrEnum
impl UnwindSafe for TypePathOrEnum
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.