pub struct StoreArtifactRequest {
pub artifact_type: ArtifactType,
pub content: String,
pub title: Option<String>,
pub metadata: Value,
}Expand description
Request to store an artifact
Fields§
§artifact_type: ArtifactTypeType of artifact
content: StringContent to store
title: Option<String>Optional title
metadata: ValueOptional metadata
Trait Implementations§
Source§impl Clone for StoreArtifactRequest
impl Clone for StoreArtifactRequest
Source§fn clone(&self) -> StoreArtifactRequest
fn clone(&self) -> StoreArtifactRequest
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 StoreArtifactRequest
impl Debug for StoreArtifactRequest
Source§impl<'de> Deserialize<'de> for StoreArtifactRequest
impl<'de> Deserialize<'de> for StoreArtifactRequest
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 StoreArtifactRequest
impl RefUnwindSafe for StoreArtifactRequest
impl Send for StoreArtifactRequest
impl Sync for StoreArtifactRequest
impl Unpin for StoreArtifactRequest
impl UnsafeUnpin for StoreArtifactRequest
impl UnwindSafe for StoreArtifactRequest
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