pub enum CopilotSeatDetailsAssigningTeam {
Team(Box<Team>),
}Expand description
CopilotSeatDetailsAssigningTeam : The team that granted access to GitHub Copilot to the assignee. This will be null if the user was assigned a seat individually. The team that granted access to GitHub Copilot to the assignee. This will be null if the user was assigned a seat individually.
Variants§
Trait Implementations§
Source§impl Clone for CopilotSeatDetailsAssigningTeam
impl Clone for CopilotSeatDetailsAssigningTeam
Source§fn clone(&self) -> CopilotSeatDetailsAssigningTeam
fn clone(&self) -> CopilotSeatDetailsAssigningTeam
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<'de> Deserialize<'de> for CopilotSeatDetailsAssigningTeam
impl<'de> Deserialize<'de> for CopilotSeatDetailsAssigningTeam
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 CopilotSeatDetailsAssigningTeam
impl PartialEq for CopilotSeatDetailsAssigningTeam
Source§fn eq(&self, other: &CopilotSeatDetailsAssigningTeam) -> bool
fn eq(&self, other: &CopilotSeatDetailsAssigningTeam) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CopilotSeatDetailsAssigningTeam
Auto Trait Implementations§
impl Freeze for CopilotSeatDetailsAssigningTeam
impl RefUnwindSafe for CopilotSeatDetailsAssigningTeam
impl Send for CopilotSeatDetailsAssigningTeam
impl Sync for CopilotSeatDetailsAssigningTeam
impl Unpin for CopilotSeatDetailsAssigningTeam
impl UnwindSafe for CopilotSeatDetailsAssigningTeam
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