pub struct CreateSimulationApplicationVersionRequest {
pub application: String,
pub current_revision_id: Option<String>,
}Fields§
§application: StringThe application information for the simulation application.
current_revision_id: Option<String>The current revision id for the simulation application. If you provide a value and it matches the latest revision ID, a new version will be created.
Trait Implementations§
Source§impl Clone for CreateSimulationApplicationVersionRequest
impl Clone for CreateSimulationApplicationVersionRequest
Source§fn clone(&self) -> CreateSimulationApplicationVersionRequest
fn clone(&self) -> CreateSimulationApplicationVersionRequest
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 Default for CreateSimulationApplicationVersionRequest
impl Default for CreateSimulationApplicationVersionRequest
Source§fn default() -> CreateSimulationApplicationVersionRequest
fn default() -> CreateSimulationApplicationVersionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateSimulationApplicationVersionRequest
impl PartialEq for CreateSimulationApplicationVersionRequest
Source§fn eq(&self, other: &CreateSimulationApplicationVersionRequest) -> bool
fn eq(&self, other: &CreateSimulationApplicationVersionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateSimulationApplicationVersionRequest
Auto Trait Implementations§
impl Freeze for CreateSimulationApplicationVersionRequest
impl RefUnwindSafe for CreateSimulationApplicationVersionRequest
impl Send for CreateSimulationApplicationVersionRequest
impl Sync for CreateSimulationApplicationVersionRequest
impl Unpin for CreateSimulationApplicationVersionRequest
impl UnsafeUnpin for CreateSimulationApplicationVersionRequest
impl UnwindSafe for CreateSimulationApplicationVersionRequest
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