pub struct AssemblyResult {
pub source: String,
pub fragments: Vec<ViewFragment>,
pub symbol_locations: HashMap<String, usize>,
pub total_tokens: usize,
pub truncated: bool,
}Expand description
Result of assembly operation
Fields§
§source: String§fragments: Vec<ViewFragment>§symbol_locations: HashMap<String, usize>§total_tokens: usize§truncated: boolAuto Trait Implementations§
impl Freeze for AssemblyResult
impl RefUnwindSafe for AssemblyResult
impl Send for AssemblyResult
impl Sync for AssemblyResult
impl Unpin for AssemblyResult
impl UnwindSafe for AssemblyResult
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