pub struct Assembled {
pub parts: Vec<Part>,
pub names: Vec<Name>,
}Expand description
Everything an assembled file holds: its sections, and the names that point into them.
Fields§
§parts: Vec<Part>The sections, in the order the file first mentioned each of them.
names: Vec<Name>The names, in the order the file defined or first referred to each of them.
Trait Implementations§
impl Eq for Assembled
impl StructuralPartialEq for Assembled
Auto Trait Implementations§
impl Freeze for Assembled
impl RefUnwindSafe for Assembled
impl Send for Assembled
impl Sync for Assembled
impl Unpin for Assembled
impl UnsafeUnpin for Assembled
impl UnwindSafe for Assembled
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.