pub struct OrgHook {
pub id: i32,
pub url: String,
pub ping_url: String,
pub deliveries_url: Option<String>,
pub name: String,
pub events: Vec<String>,
pub active: bool,
pub config: Box<OrgHookConfig>,
pub updated_at: String,
pub created_at: String,
pub type: String,
}
Expand description
OrgHook : Org Hook
Fields§
§id: i32
§url: String
§ping_url: String
§deliveries_url: Option<String>
§name: String
§events: Vec<String>
§active: bool
§config: Box<OrgHookConfig>
§updated_at: String
§created_at: String
§type: String
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OrgHook
impl<'de> Deserialize<'de> for OrgHook
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 OrgHook
Auto Trait Implementations§
impl Freeze for OrgHook
impl RefUnwindSafe for OrgHook
impl Send for OrgHook
impl Sync for OrgHook
impl Unpin for OrgHook
impl UnwindSafe for OrgHook
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