pub enum UseStaticPathNext<ResolvedType = ()> {
Single(UseStaticPathNextSingle<ResolvedType>),
Many(UseStaticPathNextMany<ResolvedType>),
}
Variants§
Single(UseStaticPathNextSingle<ResolvedType>)
Many(UseStaticPathNextMany<ResolvedType>)
Trait Implementations§
Source§impl<ResolvedType: Clone> Clone for UseStaticPathNext<ResolvedType>
impl<ResolvedType: Clone> Clone for UseStaticPathNext<ResolvedType>
Source§fn clone(&self) -> UseStaticPathNext<ResolvedType>
fn clone(&self) -> UseStaticPathNext<ResolvedType>
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<ResolvedType: Debug> Debug for UseStaticPathNext<ResolvedType>
impl<ResolvedType: Debug> Debug for UseStaticPathNext<ResolvedType>
Source§impl<T: ResolvedType> From<UseStaticPathNext> for UseStaticPathNext<Option<T>>
impl<T: ResolvedType> From<UseStaticPathNext> for UseStaticPathNext<Option<T>>
Source§fn from(value: UseStaticPathNext<()>) -> Self
fn from(value: UseStaticPathNext<()>) -> Self
Converts to this type from the input type.
Source§impl<ResolvedType: PartialEq> PartialEq for UseStaticPathNext<ResolvedType>
impl<ResolvedType: PartialEq> PartialEq for UseStaticPathNext<ResolvedType>
Source§fn eq(&self, other: &UseStaticPathNext<ResolvedType>) -> bool
fn eq(&self, other: &UseStaticPathNext<ResolvedType>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<T: ResolvedType> Resolvable for UseStaticPathNext<Option<T>>
impl<T: ResolvedType> Resolvable for UseStaticPathNext<Option<T>>
fn is_resolved(&self) -> bool
fn is_signature_resolved(&self) -> bool
Source§impl<T: ResolvedType> TryFrom<UseStaticPathNext<Option<T>>> for UseStaticPathNext<T>
impl<T: ResolvedType> TryFrom<UseStaticPathNext<Option<T>>> for UseStaticPathNext<T>
impl<ResolvedType> StructuralPartialEq for UseStaticPathNext<ResolvedType>
Auto Trait Implementations§
impl<ResolvedType> Freeze for UseStaticPathNext<ResolvedType>
impl<ResolvedType> RefUnwindSafe for UseStaticPathNext<ResolvedType>where
ResolvedType: RefUnwindSafe,
impl<ResolvedType> Send for UseStaticPathNext<ResolvedType>where
ResolvedType: Send,
impl<ResolvedType> Sync for UseStaticPathNext<ResolvedType>where
ResolvedType: Sync,
impl<ResolvedType> Unpin for UseStaticPathNext<ResolvedType>where
ResolvedType: Unpin,
impl<ResolvedType> UnwindSafe for UseStaticPathNext<ResolvedType>where
ResolvedType: UnwindSafe,
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