pub struct Named {
pub name: String,
pub properties: Vec<NamedProperty>,
}Expand description
Used as a named reference to an object.
Fields§
§name: StringThe name of the first object in the reference.
properties: Vec<NamedProperty>A list of indexes performed on the Named reference.
For example,
Named.Index1->Index2Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Named
impl RefUnwindSafe for Named
impl Send for Named
impl Sync for Named
impl Unpin for Named
impl UnwindSafe for Named
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