pub struct SimulationEventResponse {
pub body: String,
pub status_code: i64,
}
Expand description
Information about the response. Sent by the responding server for the notification setting.
Fields§
§body: String
Response body sent by the responding server. May be empty for success responses.
status_code: i64
HTTP status code sent by the responding server.
Trait Implementations§
Source§impl Clone for SimulationEventResponse
impl Clone for SimulationEventResponse
Source§fn clone(&self) -> SimulationEventResponse
fn clone(&self) -> SimulationEventResponse
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 SimulationEventResponse
impl Debug for SimulationEventResponse
Source§impl<'de> Deserialize<'de> for SimulationEventResponse
impl<'de> Deserialize<'de> for SimulationEventResponse
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 SimulationEventResponse
impl RefUnwindSafe for SimulationEventResponse
impl Send for SimulationEventResponse
impl Sync for SimulationEventResponse
impl Unpin for SimulationEventResponse
impl UnwindSafe for SimulationEventResponse
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