pub struct WebhookResponse {
pub status: String,
pub sha: String,
}Expand description
Response for the public webhook receiver.
Fields§
§status: StringOperation result – always "ok" on success.
sha: StringHEAD commit SHA after the pull.
Trait Implementations§
Source§impl ComposeSchema for WebhookResponse
impl ComposeSchema for WebhookResponse
Source§impl Debug for WebhookResponse
impl Debug for WebhookResponse
Source§impl Serialize for WebhookResponse
impl Serialize for WebhookResponse
Auto Trait Implementations§
impl Freeze for WebhookResponse
impl RefUnwindSafe for WebhookResponse
impl Send for WebhookResponse
impl Sync for WebhookResponse
impl Unpin for WebhookResponse
impl UnsafeUnpin for WebhookResponse
impl UnwindSafe for WebhookResponse
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