pub(crate) trait VariableRefExt {
// Required methods
fn new(path: ScopeRef, name: String) -> Self;
fn new_with_id_and_index(
path: ScopeRef,
name: String,
id: VarId,
index: Option<i64>,
) -> Self;
fn from_hierarchy_string(s: &str) -> Self;
fn from_hierarchy_string_with_id(s: &str, id: VarId) -> Self;
fn full_path_string_no_index(&self) -> String;
fn full_path_string(&self) -> String;
fn full_path(&self) -> Vec<String>;
fn full_path_with_index(&self) -> Vec<String>;
fn from_strs(s: &[&str]) -> Self;
fn clear_id(&mut self);
fn cxxrtl_repr(&self) -> String;
}Required Methods§
fn new(path: ScopeRef, name: String) -> Self
fn new_with_id_and_index( path: ScopeRef, name: String, id: VarId, index: Option<i64>, ) -> Self
fn from_hierarchy_string(s: &str) -> Self
fn from_hierarchy_string_with_id(s: &str, id: VarId) -> Self
fn full_path_string_no_index(&self) -> String
fn full_path_string(&self) -> String
fn full_path(&self) -> Vec<String>
fn full_path_with_index(&self) -> Vec<String>
fn from_strs(s: &[&str]) -> Self
fn clear_id(&mut self)
fn cxxrtl_repr(&self) -> String
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.