pub struct ArtifactPacket {
pub schema: String,
pub packet_id: String,
pub producer: PacketProducer,
pub topic: String,
pub created_at: String,
pub artifacts: Vec<PacketArtifact>,
pub candidate_claims: Vec<PacketCandidateClaim>,
pub open_needs: Vec<PacketOpenNeed>,
pub caveats: Vec<String>,
}Fields§
§schema: String§packet_id: String§producer: PacketProducer§topic: String§created_at: String§artifacts: Vec<PacketArtifact>§candidate_claims: Vec<PacketCandidateClaim>§open_needs: Vec<PacketOpenNeed>§caveats: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for ArtifactPacket
impl Clone for ArtifactPacket
Source§fn clone(&self) -> ArtifactPacket
fn clone(&self) -> ArtifactPacket
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 ArtifactPacket
impl Debug for ArtifactPacket
Source§impl<'de> Deserialize<'de> for ArtifactPacket
impl<'de> Deserialize<'de> for ArtifactPacket
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
Source§impl PartialEq for ArtifactPacket
impl PartialEq for ArtifactPacket
Source§fn eq(&self, other: &ArtifactPacket) -> bool
fn eq(&self, other: &ArtifactPacket) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ArtifactPacket
impl Serialize for ArtifactPacket
impl StructuralPartialEq for ArtifactPacket
Auto Trait Implementations§
impl Freeze for ArtifactPacket
impl RefUnwindSafe for ArtifactPacket
impl Send for ArtifactPacket
impl Sync for ArtifactPacket
impl Unpin for ArtifactPacket
impl UnsafeUnpin for ArtifactPacket
impl UnwindSafe for ArtifactPacket
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