pub struct StructSourceMap {
pub definition_location: Loc,
pub type_parameters: Vec<SourceName>,
pub fields: Vec<Loc>,
}
Fields
definition_location: Loc
The source declaration location of the struct
type_parameters: Vec<SourceName>
Important: type parameters need to be added in the order of their declaration
fields: Vec<Loc>
Note that fields to a struct source map need to be added in the order of the fields in the struct definition.
Implementations
sourceimpl StructSourceMap
impl StructSourceMap
pub fn new(definition_location: Loc) -> Self
pub fn add_type_parameter(&mut self, type_name: SourceName)
pub fn get_type_parameter_name(
&self,
type_parameter_idx: usize
) -> Option<SourceName>
pub fn add_field_location(&mut self, field_loc: Loc)
pub fn get_field_location(&self, field_index: MemberCount) -> Option<Loc>
pub fn dummy_struct_map(
&mut self,
view: &BinaryIndexedView<'_>,
struct_def: &StructDefinition,
default_loc: Loc
) -> Result<()>
Trait Implementations
sourceimpl Clone for StructSourceMap
impl Clone for StructSourceMap
sourcefn clone(&self) -> StructSourceMap
fn clone(&self) -> StructSourceMap
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StructSourceMap
impl Debug for StructSourceMap
sourceimpl<'de> Deserialize<'de> for StructSourceMap
impl<'de> Deserialize<'de> for StructSourceMap
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for StructSourceMap
impl Serialize for StructSourceMap
Auto Trait Implementations
impl RefUnwindSafe for StructSourceMap
impl Send for StructSourceMap
impl Sync for StructSourceMap
impl Unpin for StructSourceMap
impl UnwindSafe for StructSourceMap
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more