Struct git_iris::context::ProjectMetadata
source · pub struct ProjectMetadata {
pub language: Option<String>,
pub framework: Option<String>,
pub dependencies: Vec<String>,
pub version: Option<String>,
pub build_system: Option<String>,
pub test_framework: Option<String>,
pub plugins: Vec<String>,
}
Fields§
§language: Option<String>
§framework: Option<String>
§dependencies: Vec<String>
§version: Option<String>
§build_system: Option<String>
§test_framework: Option<String>
§plugins: Vec<String>
Trait Implementations§
source§impl Clone for ProjectMetadata
impl Clone for ProjectMetadata
source§fn clone(&self) -> ProjectMetadata
fn clone(&self) -> ProjectMetadata
Returns a copy 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 ProjectMetadata
impl Debug for ProjectMetadata
source§impl Default for ProjectMetadata
impl Default for ProjectMetadata
Auto Trait Implementations§
impl Freeze for ProjectMetadata
impl RefUnwindSafe for ProjectMetadata
impl Send for ProjectMetadata
impl Sync for ProjectMetadata
impl Unpin for ProjectMetadata
impl UnwindSafe for ProjectMetadata
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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