pub struct Client { /* private fields */ }Implementations§
Source§impl Client
impl Client
pub fn new(config: Config) -> Result<Self>
pub async fn get_executions( &self, params: &GetExecutionsRequest, ) -> Result<Vec<Execution>>
pub async fn post_execution( &self, body: &CreateExecutionRequest, ) -> Result<Execution>
pub async fn post_step( &self, uuid: &Uuid, body: &CreateStepRequest, ) -> Result<Step>
Auto Trait Implementations§
impl !Freeze for Client
impl !RefUnwindSafe for Client
impl !UnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl UnsafeUnpin for Client
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