pub enum LicenseStatus {
LICENSED,
UNLICENSED,
NON_COMMERCIAL,
Other(String),
}Variants§
Trait Implementations§
Source§impl Debug for LicenseStatus
impl Debug for LicenseStatus
Source§impl<'de> Deserialize<'de> for LicenseStatus
impl<'de> Deserialize<'de> for LicenseStatus
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LicenseStatus
impl RefUnwindSafe for LicenseStatus
impl Send for LicenseStatus
impl Sync for LicenseStatus
impl Unpin for LicenseStatus
impl UnwindSafe for LicenseStatus
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