pub struct VersionRequest<'a> {
pub project: String,
pub version: String,
/* 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: StringImplementations§
Source§impl<'a> VersionRequest<'a>
impl<'a> VersionRequest<'a>
pub async fn send(self) -> Result<VersionResponse>
Auto Trait Implementations§
impl<'a> Freeze for VersionRequest<'a>
impl<'a> !RefUnwindSafe for VersionRequest<'a>
impl<'a> Send for VersionRequest<'a>
impl<'a> Sync for VersionRequest<'a>
impl<'a> Unpin for VersionRequest<'a>
impl<'a> !UnwindSafe for VersionRequest<'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