Struct trdelnik_client::LocalnetHandle
source · pub struct LocalnetHandle { /* private fields */ }Expand description
Localnet (the validator process) handle.
Implementations§
source§impl LocalnetHandle
impl LocalnetHandle
sourcepub async fn stop(self) -> Result<(), Error>
pub async fn stop(self) -> Result<(), Error>
Stops the localnet.
Note: Manual kill: kill -9 $(lsof -t -i:8899)
Errors
It fails when:
- killing the process failed.
- process is still running after the kill command has been performed.
sourcepub async fn stop_and_remove_ledger(self) -> Result<(), Error>
pub async fn stop_and_remove_ledger(self) -> Result<(), Error>
Stops the localnet and removes the ledger.
Note: Manual kill: kill -9 $(lsof -t -i:8899)
Errors
It fails when:
- killing the process failed.
- process is still running after the kill command has been performed.
- cannot remove localnet data (the
test-ledgerdirectory).
Auto Trait Implementations§
impl !RefUnwindSafe for LocalnetHandle
impl Send for LocalnetHandle
impl Sync for LocalnetHandle
impl Unpin for LocalnetHandle
impl !UnwindSafe for LocalnetHandle
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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