pub struct ArtifactPointer {
pub id: String,
pub path: String,
pub mime: String,
pub schema: Option<String>,
}Expand description
Pointer to an artifact produced by a sensor.
Fields§
§id: String§path: String§mime: String§schema: Option<String>Trait Implementations§
Source§impl Clone for ArtifactPointer
impl Clone for ArtifactPointer
Source§fn clone(&self) -> ArtifactPointer
fn clone(&self) -> ArtifactPointer
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 ArtifactPointer
impl Debug for ArtifactPointer
Source§impl<'de> Deserialize<'de> for ArtifactPointer
impl<'de> Deserialize<'de> for ArtifactPointer
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 ArtifactPointer
impl PartialEq for ArtifactPointer
Source§impl Serialize for ArtifactPointer
impl Serialize for ArtifactPointer
impl Eq for ArtifactPointer
impl StructuralPartialEq for ArtifactPointer
Auto Trait Implementations§
impl Freeze for ArtifactPointer
impl RefUnwindSafe for ArtifactPointer
impl Send for ArtifactPointer
impl Sync for ArtifactPointer
impl Unpin for ArtifactPointer
impl UnsafeUnpin for ArtifactPointer
impl UnwindSafe for ArtifactPointer
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