pub enum ArtifactDelivery {
DataUrl {
data_url: String,
},
SignedUrl {
url: String,
expires_at_unix_ms: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for ArtifactDelivery
impl Clone for ArtifactDelivery
Source§fn clone(&self) -> ArtifactDelivery
fn clone(&self) -> ArtifactDelivery
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 ArtifactDelivery
impl Debug for ArtifactDelivery
Source§impl<'de> Deserialize<'de> for ArtifactDelivery
impl<'de> Deserialize<'de> for ArtifactDelivery
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
impl Eq for ArtifactDelivery
Source§impl PartialEq for ArtifactDelivery
impl PartialEq for ArtifactDelivery
Source§impl Serialize for ArtifactDelivery
impl Serialize for ArtifactDelivery
impl StructuralPartialEq for ArtifactDelivery
Auto Trait Implementations§
impl Freeze for ArtifactDelivery
impl RefUnwindSafe for ArtifactDelivery
impl Send for ArtifactDelivery
impl Sync for ArtifactDelivery
impl Unpin for ArtifactDelivery
impl UnsafeUnpin for ArtifactDelivery
impl UnwindSafe for ArtifactDelivery
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