pub struct IDBOpenOptions { /* private fields */ }
Implementations§
Source§impl IDBOpenOptions
impl IDBOpenOptions
pub fn new() -> Self
pub fn idb(&mut self, path: impl AsRef<Path>) -> &mut Self
pub fn save(&mut self, save: bool) -> &mut Self
pub fn file_type(&mut self, ftype: impl AsRef<str>) -> &mut Self
pub fn auto_analyse(&mut self, auto_analyse: bool) -> &mut Self
pub fn open(&self, path: impl AsRef<Path>) -> Result<IDB, IDAError>
Trait Implementations§
Source§impl Clone for IDBOpenOptions
impl Clone for IDBOpenOptions
Source§fn clone(&self) -> IDBOpenOptions
fn clone(&self) -> IDBOpenOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IDBOpenOptions
impl Debug for IDBOpenOptions
Auto Trait Implementations§
impl Freeze for IDBOpenOptions
impl RefUnwindSafe for IDBOpenOptions
impl Send for IDBOpenOptions
impl Sync for IDBOpenOptions
impl Unpin for IDBOpenOptions
impl UnwindSafe for IDBOpenOptions
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