pub struct LicenseCompliance {
pub dependency: String,
pub version: String,
pub license: LicenseType,
pub is_approved: bool,
pub issue: Option<String>,
}Expand description
License compliance issue
Fields§
§dependency: String§version: String§license: LicenseType§is_approved: bool§issue: Option<String>Trait Implementations§
Source§impl Clone for LicenseCompliance
impl Clone for LicenseCompliance
Source§fn clone(&self) -> LicenseCompliance
fn clone(&self) -> LicenseCompliance
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 LicenseCompliance
impl Debug for LicenseCompliance
Source§impl<'de> Deserialize<'de> for LicenseCompliance
impl<'de> Deserialize<'de> for LicenseCompliance
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 LicenseCompliance
impl RefUnwindSafe for LicenseCompliance
impl Send for LicenseCompliance
impl Sync for LicenseCompliance
impl Unpin for LicenseCompliance
impl UnsafeUnpin for LicenseCompliance
impl UnwindSafe for LicenseCompliance
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