pub enum FeSyntaxPackage<T: ResolvedType = ()> {
File(FeSyntaxFile<T>),
Dir(FeSyntaxDir<T>),
}
Variants§
File(FeSyntaxFile<T>)
Dir(FeSyntaxDir<T>)
Trait Implementations§
Source§impl<T: Clone + ResolvedType> Clone for FeSyntaxPackage<T>
impl<T: Clone + ResolvedType> Clone for FeSyntaxPackage<T>
Source§fn clone(&self) -> FeSyntaxPackage<T>
fn clone(&self) -> FeSyntaxPackage<T>
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<T: Debug + ResolvedType> Debug for FeSyntaxPackage<T>
impl<T: Debug + ResolvedType> Debug for FeSyntaxPackage<T>
Source§impl<T: ResolvedType> From<FeSyntaxPackage> for FeSyntaxPackage<Option<T>>
impl<T: ResolvedType> From<FeSyntaxPackage> for FeSyntaxPackage<Option<T>>
Source§fn from(value: FeSyntaxPackage<()>) -> Self
fn from(value: FeSyntaxPackage<()>) -> Self
Converts to this type from the input type.
Source§impl From<FeTokenPackage> for FeSyntaxPackage
impl From<FeTokenPackage> for FeSyntaxPackage
Source§fn from(value: FeTokenPackage) -> Self
fn from(value: FeTokenPackage) -> Self
Converts to this type from the input type.
Source§impl<T: ResolvedType> Resolvable for FeSyntaxPackage<Option<T>>
impl<T: ResolvedType> Resolvable for FeSyntaxPackage<Option<T>>
fn is_resolved(&self) -> bool
fn is_signature_resolved(&self) -> bool
Source§impl<T: ResolvedType> TryFrom<FeSyntaxPackage<Option<T>>> for FeSyntaxPackage<T>
impl<T: ResolvedType> TryFrom<FeSyntaxPackage<Option<T>>> for FeSyntaxPackage<T>
Auto Trait Implementations§
impl<T> Freeze for FeSyntaxPackage<T>
impl<T> RefUnwindSafe for FeSyntaxPackage<T>
impl<T> Send for FeSyntaxPackage<T>where
T: Send,
impl<T> Sync for FeSyntaxPackage<T>where
T: Send,
impl<T> Unpin for FeSyntaxPackage<T>
impl<T> UnwindSafe for FeSyntaxPackage<T>
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