pub struct DomainArtifactRequest<'a> {
pub rel_path: &'a str,
pub name: &'a str,
pub data_type: &'a str,
pub existing_id: Option<&'a str>,
pub content: DomainArtifactContent<'a>,
}Expand description
Metadata required to upload an artifact with Domain semantics.
Fields§
§rel_path: &'a str§name: &'a str§data_type: &'a str§existing_id: Option<&'a str>§content: DomainArtifactContent<'a>Auto Trait Implementations§
impl<'a> Freeze for DomainArtifactRequest<'a>
impl<'a> RefUnwindSafe for DomainArtifactRequest<'a>
impl<'a> Send for DomainArtifactRequest<'a>
impl<'a> Sync for DomainArtifactRequest<'a>
impl<'a> Unpin for DomainArtifactRequest<'a>
impl<'a> UnwindSafe for DomainArtifactRequest<'a>
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