pub struct CreateHookOptionConfig {
pub content_type: String,
pub url: Url,
pub additional: BTreeMap<String, String>,
}Expand description
CreateHookOptionConfig has all config options in it
required are “content_type” and “url” Required
Fields§
§content_type: String§url: Url§additional: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for CreateHookOptionConfig
impl Clone for CreateHookOptionConfig
Source§fn clone(&self) -> CreateHookOptionConfig
fn clone(&self) -> CreateHookOptionConfig
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 CreateHookOptionConfig
impl Debug for CreateHookOptionConfig
Source§impl<'de> Deserialize<'de> for CreateHookOptionConfig
impl<'de> Deserialize<'de> for CreateHookOptionConfig
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 CreateHookOptionConfig
impl PartialEq for CreateHookOptionConfig
Source§impl Serialize for CreateHookOptionConfig
impl Serialize for CreateHookOptionConfig
impl StructuralPartialEq for CreateHookOptionConfig
Auto Trait Implementations§
impl Freeze for CreateHookOptionConfig
impl RefUnwindSafe for CreateHookOptionConfig
impl Send for CreateHookOptionConfig
impl Sync for CreateHookOptionConfig
impl Unpin for CreateHookOptionConfig
impl UnwindSafe for CreateHookOptionConfig
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