pub struct LicenseEvidence {
pub license: LicenseExpression,
pub confidence: f64,
pub file_path: Option<String>,
pub line_number: Option<u32>,
}Expand description
License evidence from source scanning
Fields§
§license: LicenseExpressionThe detected license
confidence: f64Confidence score (0.0 - 1.0)
file_path: Option<String>File path where detected
line_number: Option<u32>Line number in the file
Implementations§
Source§impl LicenseEvidence
impl LicenseEvidence
Sourcepub const fn new(license: LicenseExpression, confidence: f64) -> Self
pub const fn new(license: LicenseExpression, confidence: f64) -> Self
Create new license evidence
Trait Implementations§
Source§impl Clone for LicenseEvidence
impl Clone for LicenseEvidence
Source§fn clone(&self) -> LicenseEvidence
fn clone(&self) -> LicenseEvidence
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 LicenseEvidence
impl Debug for LicenseEvidence
Source§impl<'de> Deserialize<'de> for LicenseEvidence
impl<'de> Deserialize<'de> for LicenseEvidence
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 LicenseEvidence
impl RefUnwindSafe for LicenseEvidence
impl Send for LicenseEvidence
impl Sync for LicenseEvidence
impl Unpin for LicenseEvidence
impl UnsafeUnpin for LicenseEvidence
impl UnwindSafe for LicenseEvidence
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more