pub struct VendorReleaseIdentity {
pub version: String,
pub revision: String,
}Expand description
The private identity of the assembled vendor archive.
Both fields are read out of the tree, so two jobs at the same commit agree.
Fields§
§version: StringThe workspace version, e.g. 0.12.3.
revision: StringThe full commit the archive was produced from.
Implementations§
Source§impl VendorReleaseIdentity
impl VendorReleaseIdentity
Sourcepub fn archive_name(&self) -> String
pub fn archive_name(&self) -> String
The name of the uploaded vendor archive.
Trait Implementations§
Source§impl Clone for VendorReleaseIdentity
impl Clone for VendorReleaseIdentity
Source§fn clone(&self) -> VendorReleaseIdentity
fn clone(&self) -> VendorReleaseIdentity
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 VendorReleaseIdentity
impl Debug for VendorReleaseIdentity
Source§impl<'de> Deserialize<'de> for VendorReleaseIdentity
impl<'de> Deserialize<'de> for VendorReleaseIdentity
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 VendorReleaseIdentity
impl PartialEq for VendorReleaseIdentity
Source§impl Serialize for VendorReleaseIdentity
impl Serialize for VendorReleaseIdentity
impl Eq for VendorReleaseIdentity
impl StructuralPartialEq for VendorReleaseIdentity
Auto Trait Implementations§
impl Freeze for VendorReleaseIdentity
impl RefUnwindSafe for VendorReleaseIdentity
impl Send for VendorReleaseIdentity
impl Sync for VendorReleaseIdentity
impl Unpin for VendorReleaseIdentity
impl UnsafeUnpin for VendorReleaseIdentity
impl UnwindSafe for VendorReleaseIdentity
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.