pub struct LfoClient<IO: AsyncRead + AsyncWrite> { /* private fields */ }Expand description
Request files stored on an LFO file server.
Implementations§
Source§impl<IO> LfoClient<IO>where
IO: AsyncRead + AsyncWrite,
impl<IO> LfoClient<IO>where
IO: AsyncRead + AsyncWrite,
pub fn new(sock: CloudProtoSocket<IO>) -> Self
Sourcepub async fn get(
&mut self,
request: &LfoRequest,
) -> Result<LfoResponse, LfoError>
pub async fn get( &mut self, request: &LfoRequest, ) -> Result<LfoResponse, LfoError>
Download the file at the remote path specified in the LfoRequest.
Auto Trait Implementations§
impl<IO> Freeze for LfoClient<IO>
impl<IO> RefUnwindSafe for LfoClient<IO>
impl<IO> Send for LfoClient<IO>where
IO: Send,
impl<IO> Sync for LfoClient<IO>where
IO: Sync,
impl<IO> Unpin for LfoClient<IO>
impl<IO> UnwindSafe for LfoClient<IO>
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