pub struct TargetManifest {
pub schema_version: u32,
pub generated_at: String,
pub tool: String,
pub snapshot_id: Option<String>,
pub managed_files: Vec<ManagedManifestFile>,
}Fields§
§schema_version: u32§generated_at: String§tool: String§snapshot_id: Option<String>§managed_files: Vec<ManagedManifestFile>Implementations§
Trait Implementations§
Source§impl Clone for TargetManifest
impl Clone for TargetManifest
Source§fn clone(&self) -> TargetManifest
fn clone(&self) -> TargetManifest
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 TargetManifest
impl Debug for TargetManifest
Source§impl<'de> Deserialize<'de> for TargetManifest
impl<'de> Deserialize<'de> for TargetManifest
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 TargetManifest
impl RefUnwindSafe for TargetManifest
impl Send for TargetManifest
impl Sync for TargetManifest
impl Unpin for TargetManifest
impl UnwindSafe for TargetManifest
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