pub struct WebhooksTeamParent {
pub description: Option<String>,
pub html_url: String,
pub id: i32,
pub members_url: String,
pub name: String,
pub node_id: String,
pub permission: String,
pub privacy: Privacy,
pub notification_setting: NotificationSetting,
pub repositories_url: String,
pub slug: String,
pub url: String,
}
Fields§
§description: Option<String>
Description of the team
html_url: String
§id: i32
Unique identifier of the team
members_url: String
§name: String
Name of the team
node_id: String
§permission: String
Permission that the team will have for its repositories
privacy: Privacy
§notification_setting: NotificationSetting
Whether team members will receive notifications when their team is @mentioned
repositories_url: String
§slug: String
§url: String
URL for the team
Implementations§
Trait Implementations§
Source§impl Clone for WebhooksTeamParent
impl Clone for WebhooksTeamParent
Source§fn clone(&self) -> WebhooksTeamParent
fn clone(&self) -> WebhooksTeamParent
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 WebhooksTeamParent
impl Debug for WebhooksTeamParent
Source§impl Default for WebhooksTeamParent
impl Default for WebhooksTeamParent
Source§fn default() -> WebhooksTeamParent
fn default() -> WebhooksTeamParent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhooksTeamParent
impl<'de> Deserialize<'de> for WebhooksTeamParent
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 WebhooksTeamParent
impl PartialEq for WebhooksTeamParent
Source§impl Serialize for WebhooksTeamParent
impl Serialize for WebhooksTeamParent
impl StructuralPartialEq for WebhooksTeamParent
Auto Trait Implementations§
impl Freeze for WebhooksTeamParent
impl RefUnwindSafe for WebhooksTeamParent
impl Send for WebhooksTeamParent
impl Sync for WebhooksTeamParent
impl Unpin for WebhooksTeamParent
impl UnwindSafe for WebhooksTeamParent
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