pub enum SelectedName {
Designator(WithRef<Designator>),
Selected(Box<WithPos<SelectedName>>, WithPos<WithRef<Designator>>),
}Expand description
LRM 8. Names A subset of a full name allowing only selected name
Variants§
Designator(WithRef<Designator>)
Selected(Box<WithPos<SelectedName>>, WithPos<WithRef<Designator>>)
Trait Implementations§
Source§impl Clone for SelectedName
impl Clone for SelectedName
Source§fn clone(&self) -> SelectedName
fn clone(&self) -> SelectedName
Returns a duplicate 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 SelectedName
impl Debug for SelectedName
Source§impl Display for SelectedName
impl Display for SelectedName
Source§impl PartialEq for SelectedName
impl PartialEq for SelectedName
impl StructuralPartialEq for SelectedName
Auto Trait Implementations§
impl Freeze for SelectedName
impl !RefUnwindSafe for SelectedName
impl Send for SelectedName
impl Sync for SelectedName
impl Unpin for SelectedName
impl !UnwindSafe for SelectedName
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