pub struct LockfileMetadata {
pub python_version: Option<String>,
pub platform: Option<String>,
pub resolved_at: Option<String>,
}Expand description
Metadata about the lockfile resolution
Fields§
§python_version: Option<String>Python version used for resolution
platform: Option<String>Platform used for resolution (e.g., “linux”, “darwin”, “win32”)
resolved_at: Option<String>Resolution timestamp (ISO 8601)
Trait Implementations§
Source§impl Clone for LockfileMetadata
impl Clone for LockfileMetadata
Source§fn clone(&self) -> LockfileMetadata
fn clone(&self) -> LockfileMetadata
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 LockfileMetadata
impl Debug for LockfileMetadata
Source§impl Default for LockfileMetadata
impl Default for LockfileMetadata
Source§fn default() -> LockfileMetadata
fn default() -> LockfileMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LockfileMetadata
impl<'de> Deserialize<'de> for LockfileMetadata
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
Auto Trait Implementations§
impl Freeze for LockfileMetadata
impl RefUnwindSafe for LockfileMetadata
impl Send for LockfileMetadata
impl Sync for LockfileMetadata
impl Unpin for LockfileMetadata
impl UnwindSafe for LockfileMetadata
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