pub struct PostExecuteBuilder<'a> { /* private fields */ }Expand description
Additive request builder for PostExecute.
Implementations§
Source§impl<'a> PostExecuteBuilder<'a>
impl<'a> PostExecuteBuilder<'a>
Sourcepub fn request(self, request: PostExecuteRequest) -> Self
pub fn request(self, request: PostExecuteRequest) -> Self
Replace the complete request body.
Sourcepub fn last_valid_block_height(self, last_valid_block_height: String) -> Self
pub fn last_valid_block_height(self, last_valid_block_height: String) -> Self
Set the optional request-body field lastValidBlockHeight.
Sourcepub async fn send(
self,
) -> Result<PostExecuteResponse, ApiOpError<PostExecuteApiError>>
pub async fn send( self, ) -> Result<PostExecuteResponse, ApiOpError<PostExecuteApiError>>
Send the request through the existing flat operation method.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for PostExecuteBuilder<'a>
impl<'a> !UnwindSafe for PostExecuteBuilder<'a>
impl<'a> Freeze for PostExecuteBuilder<'a>
impl<'a> Send for PostExecuteBuilder<'a>
impl<'a> Sync for PostExecuteBuilder<'a>
impl<'a> Unpin for PostExecuteBuilder<'a>
impl<'a> UnsafeUnpin for PostExecuteBuilder<'a>
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