pub struct SimulationScenarioUpdate {
pub notification_setting_id: NotificationSettingID,
pub name: Option<String>,
pub status: Status,
pub type: SimulationScenarioType,
}
Expand description
Represents a simulation entity for a scenario when updating.
Fields§
§notification_setting_id: NotificationSettingID
Unique Paddle ID for this notification setting, prefixed with ntfset_
.
name: Option<String>
Name of this simulation.
status: Status
Whether this entity can be used in Paddle.
type: SimulationScenarioType
Scenario for a simulation.
Trait Implementations§
Source§impl Clone for SimulationScenarioUpdate
impl Clone for SimulationScenarioUpdate
Source§fn clone(&self) -> SimulationScenarioUpdate
fn clone(&self) -> SimulationScenarioUpdate
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 SimulationScenarioUpdate
impl Debug for SimulationScenarioUpdate
Source§impl<'de> Deserialize<'de> for SimulationScenarioUpdate
impl<'de> Deserialize<'de> for SimulationScenarioUpdate
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 SimulationScenarioUpdate
impl RefUnwindSafe for SimulationScenarioUpdate
impl Send for SimulationScenarioUpdate
impl Sync for SimulationScenarioUpdate
impl Unpin for SimulationScenarioUpdate
impl UnwindSafe for SimulationScenarioUpdate
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