pub struct RuntimePackageFingerprint(pub String);Expand description
Describes the runtime package fingerprint portion of a runtime package snapshot. Use it when package authors or tests need explicit package configuration; validation and activation happen in package/runtime coordinators.
Tuple Fields§
§0: StringImplementations§
Trait Implementations§
Source§impl Clone for RuntimePackageFingerprint
impl Clone for RuntimePackageFingerprint
Source§fn clone(&self) -> RuntimePackageFingerprint
fn clone(&self) -> RuntimePackageFingerprint
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 RuntimePackageFingerprint
impl Debug for RuntimePackageFingerprint
Source§impl<'de> Deserialize<'de> for RuntimePackageFingerprint
impl<'de> Deserialize<'de> for RuntimePackageFingerprint
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 RuntimePackageFingerprint
impl PartialEq for RuntimePackageFingerprint
Source§fn eq(&self, other: &RuntimePackageFingerprint) -> bool
fn eq(&self, other: &RuntimePackageFingerprint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RuntimePackageFingerprint
impl StructuralPartialEq for RuntimePackageFingerprint
Auto Trait Implementations§
impl Freeze for RuntimePackageFingerprint
impl RefUnwindSafe for RuntimePackageFingerprint
impl Send for RuntimePackageFingerprint
impl Sync for RuntimePackageFingerprint
impl Unpin for RuntimePackageFingerprint
impl UnsafeUnpin for RuntimePackageFingerprint
impl UnwindSafe for RuntimePackageFingerprint
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