pub struct GetCommand { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl Command for GetCommand
impl Command for GetCommand
type Output = Option<String>
fn as_cmd(&self) -> &ReCmd
fn set_options<S: Serialize>(&mut self, opt: S) -> Result<&mut Self>
fn client(&self) -> &Client
fn url(&self) -> &Url
fn set_options_with_arg<S: Serialize>( &mut self, key: S, value: S, ) -> Result<&mut Self>
fn send<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<ReResponse<Self::Output>>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for GetCommand
impl !RefUnwindSafe for GetCommand
impl Send for GetCommand
impl Sync for GetCommand
impl Unpin for GetCommand
impl !UnwindSafe for GetCommand
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