pub struct SimulationScenarioCreate {
pub notification_setting_id: NotificationSettingID,
pub name: String,
pub type: SimulationScenarioType,
}
Expand description
Represents a simulation entity for a scenario when creating.
Fields§
§notification_setting_id: NotificationSettingID
Unique Paddle ID for this notification setting, prefixed with ntfset_
.
name: String
Name of this simulation.
type: SimulationScenarioType
Scenario for a simulation.
Trait Implementations§
Source§impl Clone for SimulationScenarioCreate
impl Clone for SimulationScenarioCreate
Source§fn clone(&self) -> SimulationScenarioCreate
fn clone(&self) -> SimulationScenarioCreate
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 SimulationScenarioCreate
impl Debug for SimulationScenarioCreate
Source§impl<'de> Deserialize<'de> for SimulationScenarioCreate
impl<'de> Deserialize<'de> for SimulationScenarioCreate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SimulationScenarioCreate
impl RefUnwindSafe for SimulationScenarioCreate
impl Send for SimulationScenarioCreate
impl Sync for SimulationScenarioCreate
impl Unpin for SimulationScenarioCreate
impl UnwindSafe for SimulationScenarioCreate
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