pub struct UpdateServiceRequest<'a> {
pub auto_deploy: Option<String>,
pub branch: Option<String>,
pub name: Option<String>,
pub service_details: Option<Value>,
pub service_id: 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§
§auto_deploy: Option<String>
§branch: Option<String>
§name: Option<String>
§service_details: Option<Value>
§service_id: String
Implementations§
Source§impl<'a> UpdateServiceRequest<'a>
impl<'a> UpdateServiceRequest<'a>
Trait Implementations§
Source§impl<'a> Clone for UpdateServiceRequest<'a>
impl<'a> Clone for UpdateServiceRequest<'a>
Source§fn clone(&self) -> UpdateServiceRequest<'a>
fn clone(&self) -> UpdateServiceRequest<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> IntoFuture for UpdateServiceRequest<'a>
impl<'a> IntoFuture for UpdateServiceRequest<'a>
Source§type Output = Result<Service, Error<Response<InMemoryBody>>>
type Output = Result<Service, Error<Response<InMemoryBody>>>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <UpdateServiceRequest<'a> as IntoFuture>::Output> + Send + 'a>>
type IntoFuture = Pin<Box<dyn Future<Output = <UpdateServiceRequest<'a> as IntoFuture>::Output> + Send + 'a>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a> Freeze for UpdateServiceRequest<'a>
impl<'a> !RefUnwindSafe for UpdateServiceRequest<'a>
impl<'a> Send for UpdateServiceRequest<'a>
impl<'a> Sync for UpdateServiceRequest<'a>
impl<'a> Unpin for UpdateServiceRequest<'a>
impl<'a> !UnwindSafe for UpdateServiceRequest<'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