pub enum AssemblyRef<'l> {
Loaded(&'l Assembly<'l>),
NotLoaded(&'l AssemblyName<'l>),
}Variants§
Loaded(&'l Assembly<'l>)
NotLoaded(&'l AssemblyName<'l>)
Trait Implementations§
Source§impl<'l> Clone for AssemblyRef<'l>
impl<'l> Clone for AssemblyRef<'l>
Source§fn clone(&self) -> AssemblyRef<'l>
fn clone(&self) -> AssemblyRef<'l>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'l> Copy for AssemblyRef<'l>
Source§impl<'l> Debug for AssemblyRef<'l>
impl<'l> Debug for AssemblyRef<'l>
Source§impl Display for AssemblyRef<'_>
impl Display for AssemblyRef<'_>
Source§impl<'l> From<&'l Assembly<'l>> for AssemblyRef<'l>
impl<'l> From<&'l Assembly<'l>> for AssemblyRef<'l>
Source§impl<'l> From<&'l AssemblyName<'l>> for AssemblyRef<'l>
impl<'l> From<&'l AssemblyName<'l>> for AssemblyRef<'l>
Source§fn from(value: &'l AssemblyName<'l>) -> Self
fn from(value: &'l AssemblyName<'l>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'l> !RefUnwindSafe for AssemblyRef<'l>
impl<'l> !Send for AssemblyRef<'l>
impl<'l> !Sync for AssemblyRef<'l>
impl<'l> !UnwindSafe for AssemblyRef<'l>
impl<'l> Freeze for AssemblyRef<'l>
impl<'l> Unpin for AssemblyRef<'l>
impl<'l> UnsafeUnpin for AssemblyRef<'l>
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