pub struct ArtifactWire {
pub path: String,
pub source: SourceWire,
pub size: Option<u64>,
pub rules: Option<RawRuleset>,
pub integrity: Option<Integrity>,
pub discovery: Option<Discovery>,
pub metadata: Option<Value>,
pub extract: Option<ExtractWire>,
}Fields§
§path: String§source: SourceWire§size: Option<u64>§rules: Option<RawRuleset>§integrity: Option<Integrity>§discovery: Option<Discovery>§metadata: Option<Value>§extract: Option<ExtractWire>Trait Implementations§
Source§impl Clone for ArtifactWire
impl Clone for ArtifactWire
Source§fn clone(&self) -> ArtifactWire
fn clone(&self) -> ArtifactWire
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 ArtifactWire
impl Debug for ArtifactWire
Source§impl<'de> Deserialize<'de> for ArtifactWire
impl<'de> Deserialize<'de> for ArtifactWire
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 ArtifactWire
impl RefUnwindSafe for ArtifactWire
impl Send for ArtifactWire
impl Sync for ArtifactWire
impl Unpin for ArtifactWire
impl UnsafeUnpin for ArtifactWire
impl UnwindSafe for ArtifactWire
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