Struct know::schema::SoftwareProject
source · pub struct SoftwareProject {
pub name: String,
pub version: String,
pub summary: String,
pub description: String,
pub license: SoftwareLicense,
pub authors: Vec<Person>,
pub email: Option<String>,
pub link: Option<IriString>,
pub github: Option<IriString>,
}Expand description
See: https://en.wikipedia.org/wiki/Software
Fields§
§name: String§version: String§summary: String§description: String§license: SoftwareLicense§email: Option<String>§link: Option<IriString>§github: Option<IriString>Trait Implementations§
source§impl Clone for SoftwareProject
impl Clone for SoftwareProject
source§fn clone(&self) -> SoftwareProject
fn clone(&self) -> SoftwareProject
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 SoftwareProject
impl Debug for SoftwareProject
source§impl Default for SoftwareProject
impl Default for SoftwareProject
source§fn default() -> SoftwareProject
fn default() -> SoftwareProject
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SoftwareProject
impl<'de> Deserialize<'de> for SoftwareProject
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
source§impl PartialEq for SoftwareProject
impl PartialEq for SoftwareProject
source§fn eq(&self, other: &SoftwareProject) -> bool
fn eq(&self, other: &SoftwareProject) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for SoftwareProject
impl PartialOrd for SoftwareProject
source§fn partial_cmp(&self, other: &SoftwareProject) -> Option<Ordering>
fn partial_cmp(&self, other: &SoftwareProject) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl Serialize for SoftwareProject
impl Serialize for SoftwareProject
impl StructuralPartialEq for SoftwareProject
Auto Trait Implementations§
impl RefUnwindSafe for SoftwareProject
impl Send for SoftwareProject
impl Sync for SoftwareProject
impl Unpin for SoftwareProject
impl UnwindSafe for SoftwareProject
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