pub struct LicenseFile {
pub file: String,
pub licenses_info: Option<Vec<LicenseInfo>>,
}Fields§
§file: String§licenses_info: Option<Vec<LicenseInfo>>Trait Implementations§
Source§impl Clone for LicenseFile
impl Clone for LicenseFile
Source§fn clone(&self) -> LicenseFile
fn clone(&self) -> LicenseFile
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 LicenseFile
impl Debug for LicenseFile
Source§impl<'de> Deserialize<'de> for LicenseFile
impl<'de> Deserialize<'de> for LicenseFile
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
Source§impl PartialEq for LicenseFile
impl PartialEq for LicenseFile
Source§impl Serialize for LicenseFile
impl Serialize for LicenseFile
impl StructuralPartialEq for LicenseFile
Auto Trait Implementations§
impl Freeze for LicenseFile
impl RefUnwindSafe for LicenseFile
impl Send for LicenseFile
impl Sync for LicenseFile
impl Unpin for LicenseFile
impl UnwindSafe for LicenseFile
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