pub enum OrganizationMembers {
Organization(Organization),
Person(Person),
}
Expand description
Types permitted for the members
property of a Organization
node.
Variants§
Organization(Organization)
Person(Person)
Trait Implementations§
Source§impl AsRef<str> for OrganizationMembers
impl AsRef<str> for OrganizationMembers
Source§impl Clone for OrganizationMembers
impl Clone for OrganizationMembers
Source§fn clone(&self) -> OrganizationMembers
fn clone(&self) -> OrganizationMembers
Returns a copy 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 OrganizationMembers
impl Debug for OrganizationMembers
Source§impl<'de> Deserialize<'de> for OrganizationMembers
impl<'de> Deserialize<'de> for OrganizationMembers
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 OrganizationMembers
impl RefUnwindSafe for OrganizationMembers
impl Send for OrganizationMembers
impl Sync for OrganizationMembers
impl Unpin for OrganizationMembers
impl UnwindSafe for OrganizationMembers
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