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