pub struct ParsedArtifact {
pub format: ArtifactFormat,
pub bytes: Vec<u8>,
}Fields§
§format: ArtifactFormat§bytes: Vec<u8>Trait Implementations§
Source§impl Clone for ParsedArtifact
impl Clone for ParsedArtifact
Source§fn clone(&self) -> ParsedArtifact
fn clone(&self) -> ParsedArtifact
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 ParsedArtifact
impl Debug for ParsedArtifact
Source§impl<'de> Deserialize<'de> for ParsedArtifact
impl<'de> Deserialize<'de> for ParsedArtifact
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 ParsedArtifact
impl RefUnwindSafe for ParsedArtifact
impl Send for ParsedArtifact
impl Sync for ParsedArtifact
impl Unpin for ParsedArtifact
impl UnsafeUnpin for ParsedArtifact
impl UnwindSafe for ParsedArtifact
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