pub struct RemoteFetchSymbolsClient<S> { /* private fields */ }Implementations§
Source§impl<S: AsyncRead + AsyncWrite + Unpin> RemoteFetchSymbolsClient<S>
impl<S: AsyncRead + AsyncWrite + Unpin> RemoteFetchSymbolsClient<S>
pub async fn connect(stream: S) -> Result<Self, FetchSymbolsError>
pub async fn list_files( &mut self, ) -> Result<Vec<RemoteSymbolFile>, FetchSymbolsError>
pub async fn download<W: Write>( &mut self, index: u32, writer: W, max_bytes: Option<u64>, ) -> Result<u64, FetchSymbolsError>
Auto Trait Implementations§
impl<S> Freeze for RemoteFetchSymbolsClient<S>where
S: Freeze,
impl<S> RefUnwindSafe for RemoteFetchSymbolsClient<S>where
S: RefUnwindSafe,
impl<S> Send for RemoteFetchSymbolsClient<S>where
S: Send,
impl<S> Sync for RemoteFetchSymbolsClient<S>where
S: Sync,
impl<S> Unpin for RemoteFetchSymbolsClient<S>where
S: Unpin,
impl<S> UnsafeUnpin for RemoteFetchSymbolsClient<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for RemoteFetchSymbolsClient<S>where
S: UnwindSafe,
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