pub struct UpdateWebhookCredentialDto {
pub authentication_plan: Option<OAuth2AuthenticationPlan>,
pub name: Option<String>,
}
Fields§
§authentication_plan: Option<OAuth2AuthenticationPlan>
This is the authentication plan. Currently supports OAuth2 RFC 6749.
name: Option<String>
This is the name of credential. This is just for your reference.
Implementations§
Source§impl UpdateWebhookCredentialDto
impl UpdateWebhookCredentialDto
pub fn new() -> UpdateWebhookCredentialDto
Trait Implementations§
Source§impl Clone for UpdateWebhookCredentialDto
impl Clone for UpdateWebhookCredentialDto
Source§fn clone(&self) -> UpdateWebhookCredentialDto
fn clone(&self) -> UpdateWebhookCredentialDto
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateWebhookCredentialDto
impl Debug for UpdateWebhookCredentialDto
Source§impl Default for UpdateWebhookCredentialDto
impl Default for UpdateWebhookCredentialDto
Source§fn default() -> UpdateWebhookCredentialDto
fn default() -> UpdateWebhookCredentialDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateWebhookCredentialDto
impl<'de> Deserialize<'de> for UpdateWebhookCredentialDto
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
impl StructuralPartialEq for UpdateWebhookCredentialDto
Auto Trait Implementations§
impl Freeze for UpdateWebhookCredentialDto
impl RefUnwindSafe for UpdateWebhookCredentialDto
impl Send for UpdateWebhookCredentialDto
impl Sync for UpdateWebhookCredentialDto
impl Unpin for UpdateWebhookCredentialDto
impl UnwindSafe for UpdateWebhookCredentialDto
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