pub struct WebhookRepository {
pub key: String,
pub name: String,
pub owner: String,
}Expand description
Repository information for webhook payloads.
Fields§
§key: StringRepository key.
name: StringRepository name.
owner: StringRepository owner.
Trait Implementations§
Source§impl Clone for WebhookRepository
impl Clone for WebhookRepository
Source§fn clone(&self) -> WebhookRepository
fn clone(&self) -> WebhookRepository
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 WebhookRepository
impl Debug for WebhookRepository
Source§impl<'de> Deserialize<'de> for WebhookRepository
impl<'de> Deserialize<'de> for WebhookRepository
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
Auto Trait Implementations§
impl Freeze for WebhookRepository
impl RefUnwindSafe for WebhookRepository
impl Send for WebhookRepository
impl Sync for WebhookRepository
impl Unpin for WebhookRepository
impl UnwindSafe for WebhookRepository
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