pub enum IconifyLicense {
Simple(String),
Detailed {
title: Option<String>,
spdx: Option<String>,
url: Option<String>,
},
}Expand description
License information in collection metadata
Variants§
Trait Implementations§
Source§impl Clone for IconifyLicense
impl Clone for IconifyLicense
Source§fn clone(&self) -> IconifyLicense
fn clone(&self) -> IconifyLicense
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 Debug for IconifyLicense
impl Debug for IconifyLicense
Source§impl<'de> Deserialize<'de> for IconifyLicense
impl<'de> Deserialize<'de> for IconifyLicense
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 IconifyLicense
impl RefUnwindSafe for IconifyLicense
impl Send for IconifyLicense
impl Sync for IconifyLicense
impl Unpin for IconifyLicense
impl UnwindSafe for IconifyLicense
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