pub struct IdentifierList {
pub identifiers: Vec<Spanned<String>>,
pub span: Span,
}Expand description
A bracketed list of identifier references.
Fields§
§identifiers: Vec<Spanned<String>>Authored identifiers in source order.
span: SpanSpan including the list brackets.
Trait Implementations§
Source§impl Clone for IdentifierList
impl Clone for IdentifierList
Source§fn clone(&self) -> IdentifierList
fn clone(&self) -> IdentifierList
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 moreSource§impl Debug for IdentifierList
impl Debug for IdentifierList
impl Eq for IdentifierList
Source§impl PartialEq for IdentifierList
impl PartialEq for IdentifierList
impl StructuralPartialEq for IdentifierList
Auto Trait Implementations§
impl Freeze for IdentifierList
impl RefUnwindSafe for IdentifierList
impl Send for IdentifierList
impl Sync for IdentifierList
impl Unpin for IdentifierList
impl UnsafeUnpin for IdentifierList
impl UnwindSafe for IdentifierList
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