pub struct OrganizationMemberInvitedEventInvitation<'a> {
pub id: usize,
pub node_id: &'a str,
pub login: &'a str,
pub email: Option<&'a str>,
pub role: &'a str,
pub created_at: &'a str,
pub failed_at: Option<&'a str>,
pub failed_reason: Option<&'a str>,
pub inviter: User<'a>,
pub team_count: usize,
pub invitation_teams_url: &'a str,
}
Fields§
§id: usize
§node_id: &'a str
§login: &'a str
§email: Option<&'a str>
§role: &'a str
§created_at: &'a str
§failed_at: Option<&'a str>
§failed_reason: Option<&'a str>
§inviter: User<'a>
§team_count: usize
§invitation_teams_url: &'a str
Trait Implementations§
source§impl<'a> Debug for OrganizationMemberInvitedEventInvitation<'a>
impl<'a> Debug for OrganizationMemberInvitedEventInvitation<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for OrganizationMemberInvitedEventInvitation<'a>
impl<'de: 'a, 'a> Deserialize<'de> for OrganizationMemberInvitedEventInvitation<'a>
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<'a> RefUnwindSafe for OrganizationMemberInvitedEventInvitation<'a>
impl<'a> Send for OrganizationMemberInvitedEventInvitation<'a>
impl<'a> Sync for OrganizationMemberInvitedEventInvitation<'a>
impl<'a> Unpin for OrganizationMemberInvitedEventInvitation<'a>
impl<'a> UnwindSafe for OrganizationMemberInvitedEventInvitation<'a>
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