pub struct ArtifactManifest {
pub uri: String,
pub sha256: String,
pub content_type: String,
pub bytes: u64,
pub encrypted: bool,
}Fields§
§uri: String§sha256: String§content_type: String§bytes: u64§encrypted: boolTrait Implementations§
Source§impl Clone for ArtifactManifest
impl Clone for ArtifactManifest
Source§fn clone(&self) -> ArtifactManifest
fn clone(&self) -> ArtifactManifest
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 ArtifactManifest
impl Debug for ArtifactManifest
Source§impl<'de> Deserialize<'de> for ArtifactManifest
impl<'de> Deserialize<'de> for ArtifactManifest
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 ArtifactManifest
impl RefUnwindSafe for ArtifactManifest
impl Send for ArtifactManifest
impl Sync for ArtifactManifest
impl Unpin for ArtifactManifest
impl UnsafeUnpin for ArtifactManifest
impl UnwindSafe for ArtifactManifest
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