#[non_exhaustive]pub struct CreateVersionRequest {
pub parent: String,
pub version: Option<Version>,
/* private fields */
}
Expand description
Request message for Versions.CreateVersion
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.parent: String
Name of the parent resource to create this version under. Example:
apps/myapp/services/default
.
version: Option<Version>
Application deployment configuration.
Implementations§
Source§impl CreateVersionRequest
impl CreateVersionRequest
pub fn new() -> Self
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sets the value of parent.
Sourcepub fn set_version<T>(self, v: T) -> Self
pub fn set_version<T>(self, v: T) -> Self
Sets the value of version.
Trait Implementations§
Source§impl Clone for CreateVersionRequest
impl Clone for CreateVersionRequest
Source§fn clone(&self) -> CreateVersionRequest
fn clone(&self) -> CreateVersionRequest
Returns a duplicate 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 Debug for CreateVersionRequest
impl Debug for CreateVersionRequest
Source§impl Default for CreateVersionRequest
impl Default for CreateVersionRequest
Source§fn default() -> CreateVersionRequest
fn default() -> CreateVersionRequest
Returns the “default value” for a type. Read more
Source§impl Message for CreateVersionRequest
impl Message for CreateVersionRequest
Source§impl PartialEq for CreateVersionRequest
impl PartialEq for CreateVersionRequest
impl StructuralPartialEq for CreateVersionRequest
Auto Trait Implementations§
impl Freeze for CreateVersionRequest
impl RefUnwindSafe for CreateVersionRequest
impl Send for CreateVersionRequest
impl Sync for CreateVersionRequest
impl Unpin for CreateVersionRequest
impl UnwindSafe for CreateVersionRequest
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