pub struct Db { /* private fields */ }Implementations§
Source§impl Db
impl Db
pub fn new() -> Self
pub fn region(&self, space: AddressSpace) -> Option<&Region>
pub fn region_mut(&mut self, space: AddressSpace) -> &mut Region
pub fn xrefs_to(&self, target: &PhysicalAddr) -> Vec<Xref>
pub fn xrefs_from(&self, source: &PhysicalAddr) -> Vec<Xref>
pub fn render(&self, space: AddressSpace) -> Vec<Line>
pub fn render_range( &self, space: AddressSpace, start: AddressValue, end: AddressValue, ) -> Vec<Line>
pub fn to_sdas(&self) -> String
pub fn to_commands(&self) -> Vec<Command>
pub fn apply( &mut self, command: Command, env: Option<&dyn Environment>, ) -> Result<Vec<Command>, Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Db
impl RefUnwindSafe for Db
impl Send for Db
impl Sync for Db
impl Unpin for Db
impl UnsafeUnpin for Db
impl UnwindSafe for Db
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