pub struct LockedUpstream {
pub name: String,
pub version: String,
pub source: Option<String>,
pub tree_hash: String,
pub artifact_hash: String,
}Fields§
§name: String§version: String§source: Option<String>§tree_hash: String§artifact_hash: StringTrait Implementations§
Source§impl Clone for LockedUpstream
impl Clone for LockedUpstream
Source§fn clone(&self) -> LockedUpstream
fn clone(&self) -> LockedUpstream
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 LockedUpstream
impl Debug for LockedUpstream
Source§impl<'de> Deserialize<'de> for LockedUpstream
impl<'de> Deserialize<'de> for LockedUpstream
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 LockedUpstream
Source§impl PartialEq for LockedUpstream
impl PartialEq for LockedUpstream
Source§impl Serialize for LockedUpstream
impl Serialize for LockedUpstream
impl StructuralPartialEq for LockedUpstream
Auto Trait Implementations§
impl Freeze for LockedUpstream
impl RefUnwindSafe for LockedUpstream
impl Send for LockedUpstream
impl Sync for LockedUpstream
impl Unpin for LockedUpstream
impl UnsafeUnpin for LockedUpstream
impl UnwindSafe for LockedUpstream
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