pub enum TypePathOrEnum {
TypePath(TypePath),
Enum(IndexMap<String, EnumVariant>),
}Variants§
Implementations§
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
impl Eq for TypePathOrEnum
impl StructuralPartialEq for TypePathOrEnum
Auto Trait Implementations§
impl Freeze for TypePathOrEnum
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.