pub struct ProjectIdentity {
pub name: String,
pub version: Option<String>,
pub kind: ProjectKind,
pub source: IdentitySource,
}Fields§
§name: String§version: Option<String>§kind: ProjectKind§source: IdentitySourceTrait Implementations§
Source§impl Clone for ProjectIdentity
impl Clone for ProjectIdentity
Source§fn clone(&self) -> ProjectIdentity
fn clone(&self) -> ProjectIdentity
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 ProjectIdentity
impl Debug for ProjectIdentity
Source§impl<'de> Deserialize<'de> for ProjectIdentity
impl<'de> Deserialize<'de> for ProjectIdentity
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 ProjectIdentity
impl PartialEq for ProjectIdentity
Source§fn eq(&self, other: &ProjectIdentity) -> bool
fn eq(&self, other: &ProjectIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectIdentity
impl Serialize for ProjectIdentity
impl Eq for ProjectIdentity
impl StructuralPartialEq for ProjectIdentity
Auto Trait Implementations§
impl Freeze for ProjectIdentity
impl RefUnwindSafe for ProjectIdentity
impl Send for ProjectIdentity
impl Sync for ProjectIdentity
impl Unpin for ProjectIdentity
impl UnsafeUnpin for ProjectIdentity
impl UnwindSafe for ProjectIdentity
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