pub struct BuildRequest<'a> {
pub project: String,
pub version: String,
pub build: i64,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§project: String§version: String§build: i64Implementations§
Source§impl<'a> BuildRequest<'a>
impl<'a> BuildRequest<'a>
pub async fn send(self) -> Result<BuildResponse>
Auto Trait Implementations§
impl<'a> Freeze for BuildRequest<'a>
impl<'a> !RefUnwindSafe for BuildRequest<'a>
impl<'a> Send for BuildRequest<'a>
impl<'a> Sync for BuildRequest<'a>
impl<'a> Unpin for BuildRequest<'a>
impl<'a> !UnwindSafe for BuildRequest<'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