pub struct SymbolRepresentation {
pub name: String,
pub items: Vec<RepresentationItemRef>,
pub context_of_items: RepresentationContextRef,
}Fields§
§name: String§items: Vec<RepresentationItemRef>§context_of_items: RepresentationContextRefTrait Implementations§
Source§impl Clone for SymbolRepresentation
impl Clone for SymbolRepresentation
Source§fn clone(&self) -> SymbolRepresentation
fn clone(&self) -> SymbolRepresentation
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 SymbolRepresentation
impl Debug for SymbolRepresentation
Source§impl PartialEq for SymbolRepresentation
impl PartialEq for SymbolRepresentation
Source§fn eq(&self, other: &SymbolRepresentation) -> bool
fn eq(&self, other: &SymbolRepresentation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SymbolRepresentation
Auto Trait Implementations§
impl Freeze for SymbolRepresentation
impl RefUnwindSafe for SymbolRepresentation
impl Send for SymbolRepresentation
impl Sync for SymbolRepresentation
impl Unpin for SymbolRepresentation
impl UnsafeUnpin for SymbolRepresentation
impl UnwindSafe for SymbolRepresentation
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