pub struct WebhookInfoResponse {
pub url: String,
pub secret: String,
}Expand description
Response for GET /api/v1/projects/{id}/webhook.
Fields§
§url: StringFull URL to configure in the git host’s webhook settings.
secret: StringThe HMAC secret to paste into the git host.
Trait Implementations§
Source§impl ComposeSchema for WebhookInfoResponse
impl ComposeSchema for WebhookInfoResponse
Source§impl Debug for WebhookInfoResponse
impl Debug for WebhookInfoResponse
Source§impl Serialize for WebhookInfoResponse
impl Serialize for WebhookInfoResponse
Auto Trait Implementations§
impl Freeze for WebhookInfoResponse
impl RefUnwindSafe for WebhookInfoResponse
impl Send for WebhookInfoResponse
impl Sync for WebhookInfoResponse
impl Unpin for WebhookInfoResponse
impl UnsafeUnpin for WebhookInfoResponse
impl UnwindSafe for WebhookInfoResponse
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