pub struct NullableLicenseSimple {
pub key: String,
pub name: String,
pub url: Option<String>,
pub spdx_id: Option<String>,
pub node_id: String,
pub html_url: Option<String>,
}
Expand description
NullableLicenseSimple : License Simple
Fields§
§key: String
§name: String
§url: Option<String>
§spdx_id: Option<String>
§node_id: String
§html_url: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for NullableLicenseSimple
impl Clone for NullableLicenseSimple
Source§fn clone(&self) -> NullableLicenseSimple
fn clone(&self) -> NullableLicenseSimple
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 NullableLicenseSimple
impl Debug for NullableLicenseSimple
Source§impl Default for NullableLicenseSimple
impl Default for NullableLicenseSimple
Source§fn default() -> NullableLicenseSimple
fn default() -> NullableLicenseSimple
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NullableLicenseSimple
impl<'de> Deserialize<'de> for NullableLicenseSimple
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 NullableLicenseSimple
impl PartialEq for NullableLicenseSimple
Source§impl Serialize for NullableLicenseSimple
impl Serialize for NullableLicenseSimple
impl StructuralPartialEq for NullableLicenseSimple
Auto Trait Implementations§
impl Freeze for NullableLicenseSimple
impl RefUnwindSafe for NullableLicenseSimple
impl Send for NullableLicenseSimple
impl Sync for NullableLicenseSimple
impl Unpin for NullableLicenseSimple
impl UnwindSafe for NullableLicenseSimple
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