pub struct NamespaceObjectAlias {
pub via_export_name: String,
pub suffix: String,
pub namespace_local: String,
}Expand description
One alias entry tying an exported object’s dotted property path to a namespace import.
Fields§
§via_export_name: StringCanonical export name.
suffix: StringDotted suffix of the property path relative to the export.
namespace_local: StringLocal name of the namespace import.
Trait Implementations§
Source§impl Clone for NamespaceObjectAlias
impl Clone for NamespaceObjectAlias
Auto Trait Implementations§
impl Freeze for NamespaceObjectAlias
impl RefUnwindSafe for NamespaceObjectAlias
impl Send for NamespaceObjectAlias
impl Sync for NamespaceObjectAlias
impl Unpin for NamespaceObjectAlias
impl UnsafeUnpin for NamespaceObjectAlias
impl UnwindSafe for NamespaceObjectAlias
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