pub struct UpdateIntegrationRequest {
pub name: Option<String>,
pub data: Option<String>,
}Expand description
UpdateIntegrationRequest
Fields§
§name: Option<String>The new name of the integration
data: Option<String>The new authentication data for the integration
Implementations§
Source§impl UpdateIntegrationRequest
impl UpdateIntegrationRequest
pub fn new() -> UpdateIntegrationRequest
Trait Implementations§
Source§impl Clone for UpdateIntegrationRequest
impl Clone for UpdateIntegrationRequest
Source§fn clone(&self) -> UpdateIntegrationRequest
fn clone(&self) -> UpdateIntegrationRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateIntegrationRequest
impl Debug for UpdateIntegrationRequest
Source§impl Default for UpdateIntegrationRequest
impl Default for UpdateIntegrationRequest
Source§fn default() -> UpdateIntegrationRequest
fn default() -> UpdateIntegrationRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateIntegrationRequest
impl<'de> Deserialize<'de> for UpdateIntegrationRequest
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
Source§impl PartialEq for UpdateIntegrationRequest
impl PartialEq for UpdateIntegrationRequest
Source§impl Serialize for UpdateIntegrationRequest
impl Serialize for UpdateIntegrationRequest
impl StructuralPartialEq for UpdateIntegrationRequest
Auto Trait Implementations§
impl Freeze for UpdateIntegrationRequest
impl RefUnwindSafe for UpdateIntegrationRequest
impl Send for UpdateIntegrationRequest
impl Sync for UpdateIntegrationRequest
impl Unpin for UpdateIntegrationRequest
impl UnsafeUnpin for UpdateIntegrationRequest
impl UnwindSafe for UpdateIntegrationRequest
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