#[non_exhaustive]pub struct GetSimulationRequest {
pub name: String,
/* private fields */
}Expand description
Request message for getting simulation. Simulation name can include “latest” to retrieve the latest simulation For example, “organizations/123/simulations/latest”
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.name: StringRequired. The organization name or simulation name of this simulation
Valid format:
organizations/{organization}/simulations/latest
organizations/{organization}/simulations/{simulation}
Implementations§
Trait Implementations§
Source§impl Clone for GetSimulationRequest
impl Clone for GetSimulationRequest
Source§fn clone(&self) -> GetSimulationRequest
fn clone(&self) -> GetSimulationRequest
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 GetSimulationRequest
impl Debug for GetSimulationRequest
Source§impl Default for GetSimulationRequest
impl Default for GetSimulationRequest
Source§fn default() -> GetSimulationRequest
fn default() -> GetSimulationRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetSimulationRequest
impl Message for GetSimulationRequest
Source§impl PartialEq for GetSimulationRequest
impl PartialEq for GetSimulationRequest
impl StructuralPartialEq for GetSimulationRequest
Auto Trait Implementations§
impl Freeze for GetSimulationRequest
impl RefUnwindSafe for GetSimulationRequest
impl Send for GetSimulationRequest
impl Sync for GetSimulationRequest
impl Unpin for GetSimulationRequest
impl UnwindSafe for GetSimulationRequest
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