pub enum ExternalSourceRefView<'m> {
ExternalSource(&'m ExternalSource),
Complex(&'m ComplexUnit),
}Variants§
ExternalSource(&'m ExternalSource)
Complex(&'m ComplexUnit)
Trait Implementations§
Source§impl<'m> Clone for ExternalSourceRefView<'m>
impl<'m> Clone for ExternalSourceRefView<'m>
Source§fn clone(&self) -> ExternalSourceRefView<'m>
fn clone(&self) -> ExternalSourceRefView<'m>
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<'m> Copy for ExternalSourceRefView<'m>
Auto Trait Implementations§
impl<'m> Freeze for ExternalSourceRefView<'m>
impl<'m> RefUnwindSafe for ExternalSourceRefView<'m>
impl<'m> Send for ExternalSourceRefView<'m>
impl<'m> Sync for ExternalSourceRefView<'m>
impl<'m> Unpin for ExternalSourceRefView<'m>
impl<'m> UnsafeUnpin for ExternalSourceRefView<'m>
impl<'m> UnwindSafe for ExternalSourceRefView<'m>
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