pub struct LicenseFinding {
pub spdx: String,
pub confidence: f32,
pub source_path: String,
pub source_kind: LicenseSourceKind,
}Fields§
§spdx: String§confidence: f32§source_path: String§source_kind: LicenseSourceKindTrait Implementations§
Source§impl Clone for LicenseFinding
impl Clone for LicenseFinding
Source§fn clone(&self) -> LicenseFinding
fn clone(&self) -> LicenseFinding
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 LicenseFinding
impl Debug for LicenseFinding
Source§impl<'de> Deserialize<'de> for LicenseFinding
impl<'de> Deserialize<'de> for LicenseFinding
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 LicenseFinding
impl RefUnwindSafe for LicenseFinding
impl Send for LicenseFinding
impl Sync for LicenseFinding
impl Unpin for LicenseFinding
impl UnwindSafe for LicenseFinding
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