pub struct RepoIntelCapabilityProfile {
pub schema_version: u32,
pub state: RepoIntelCapabilityState,
pub classes_present: Vec<RepoIntelToolClass>,
pub note: Option<String>,
}Expand description
Profile returned by ainl_repo_intel normalization.
Fields§
§schema_version: u32§state: RepoIntelCapabilityState§classes_present: Vec<RepoIntelToolClass>Which RepoIntelToolClass values had at least one matching tool.
note: Option<String>Human-readable note (optional).
Trait Implementations§
Source§impl Clone for RepoIntelCapabilityProfile
impl Clone for RepoIntelCapabilityProfile
Source§fn clone(&self) -> RepoIntelCapabilityProfile
fn clone(&self) -> RepoIntelCapabilityProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RepoIntelCapabilityProfile
impl Debug for RepoIntelCapabilityProfile
Source§impl<'de> Deserialize<'de> for RepoIntelCapabilityProfile
impl<'de> Deserialize<'de> for RepoIntelCapabilityProfile
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 RepoIntelCapabilityProfile
impl RefUnwindSafe for RepoIntelCapabilityProfile
impl Send for RepoIntelCapabilityProfile
impl Sync for RepoIntelCapabilityProfile
impl Unpin for RepoIntelCapabilityProfile
impl UnsafeUnpin for RepoIntelCapabilityProfile
impl UnwindSafe for RepoIntelCapabilityProfile
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