pub struct TimelineIdentity {
pub lock_digest: Option<String>,
pub identity_key: Option<String>,
pub source: IdentitySource,
}Expand description
What build this was, as far as the client could tell.
Fields§
§lock_digest: Option<String>Truncated content hash of the root’s Cargo.lock.
identity_key: Option<String>Prefetch identity key (id/{lock}/{target}/{profile}), only when the
profile was known or the key was set explicitly.
source: IdentitySourceTrait Implementations§
Source§impl Clone for TimelineIdentity
impl Clone for TimelineIdentity
Source§fn clone(&self) -> TimelineIdentity
fn clone(&self) -> TimelineIdentity
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 TimelineIdentity
impl Debug for TimelineIdentity
Source§impl Default for TimelineIdentity
impl Default for TimelineIdentity
Source§fn default() -> TimelineIdentity
fn default() -> TimelineIdentity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimelineIdentity
impl<'de> Deserialize<'de> for TimelineIdentity
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
impl Eq for TimelineIdentity
Source§impl PartialEq for TimelineIdentity
impl PartialEq for TimelineIdentity
Source§impl Serialize for TimelineIdentity
impl Serialize for TimelineIdentity
impl StructuralPartialEq for TimelineIdentity
Auto Trait Implementations§
impl Freeze for TimelineIdentity
impl RefUnwindSafe for TimelineIdentity
impl Send for TimelineIdentity
impl Sync for TimelineIdentity
impl Unpin for TimelineIdentity
impl UnsafeUnpin for TimelineIdentity
impl UnwindSafe for TimelineIdentity
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