pub struct IntegrationRequestPayload {
pub success: Option<bool>,
}Fields§
§success: Option<bool>Whether the operation was successful.
Trait Implementations§
Source§impl Clone for IntegrationRequestPayload
impl Clone for IntegrationRequestPayload
Source§fn clone(&self) -> IntegrationRequestPayload
fn clone(&self) -> IntegrationRequestPayload
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 IntegrationRequestPayload
impl Debug for IntegrationRequestPayload
Source§impl Default for IntegrationRequestPayload
impl Default for IntegrationRequestPayload
Source§fn default() -> IntegrationRequestPayload
fn default() -> IntegrationRequestPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationRequestPayloadwhere
IntegrationRequestPayload: Default,
impl<'de> Deserialize<'de> for IntegrationRequestPayloadwhere
IntegrationRequestPayload: Default,
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 IntegrationRequestPayload
impl RefUnwindSafe for IntegrationRequestPayload
impl Send for IntegrationRequestPayload
impl Sync for IntegrationRequestPayload
impl Unpin for IntegrationRequestPayload
impl UnwindSafe for IntegrationRequestPayload
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