pub enum GrantTypes {
Grant(Grant),
MonetaryGrant(MonetaryGrant),
}
Expand description
All type schemas that are derived from Grant
Variants§
Grant(Grant)
MonetaryGrant(MonetaryGrant)
Trait Implementations§
Source§impl AsRef<str> for GrantTypes
impl AsRef<str> for GrantTypes
Source§impl Clone for GrantTypes
impl Clone for GrantTypes
Source§fn clone(&self) -> GrantTypes
fn clone(&self) -> GrantTypes
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 GrantTypes
impl Debug for GrantTypes
Source§impl<'de> Deserialize<'de> for GrantTypes
impl<'de> Deserialize<'de> for GrantTypes
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 GrantTypes
impl RefUnwindSafe for GrantTypes
impl Send for GrantTypes
impl Sync for GrantTypes
impl Unpin for GrantTypes
impl UnwindSafe for GrantTypes
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