pub struct ExtractedMetadata {
pub title: Option<String>,
pub description: Option<String>,
pub keywords: Vec<String>,
pub concepts: Vec<String>,
pub license: Option<String>,
pub authors: Vec<String>,
pub tags: Vec<String>,
pub detected_frameworks: Vec<String>,
}Fields§
§title: Option<String>§description: Option<String>§keywords: Vec<String>§concepts: Vec<String>§license: Option<String>§detected_frameworks: Vec<String>Trait Implementations§
Source§impl Clone for ExtractedMetadata
impl Clone for ExtractedMetadata
Source§fn clone(&self) -> ExtractedMetadata
fn clone(&self) -> ExtractedMetadata
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 moreAuto Trait Implementations§
impl Freeze for ExtractedMetadata
impl RefUnwindSafe for ExtractedMetadata
impl Send for ExtractedMetadata
impl Sync for ExtractedMetadata
impl Unpin for ExtractedMetadata
impl UnwindSafe for ExtractedMetadata
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