pub struct LiveBody {
pub file: String,
pub cargo_manifest_path: String,
pub module_path: String,
pub line: usize,
pub column: usize,
pub code: String,
pub live_type_infos: Vec<LiveTypeInfo>,
}
Fields§
§file: String
§cargo_manifest_path: String
§module_path: String
§line: usize
§column: usize
§code: String
§live_type_infos: Vec<LiveTypeInfo>
Auto Trait Implementations§
impl Freeze for LiveBody
impl RefUnwindSafe for LiveBody
impl Send for LiveBody
impl Sync for LiveBody
impl Unpin for LiveBody
impl UnwindSafe for LiveBody
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