Struct buildsrs_common::api::ArtifactResponse
source · pub struct ArtifactResponse {
pub name: String,
pub version: String,
pub size: usize,
}
Expand description
Crate artifact response
Fields§
§name: String
Name of the crate
version: String
Version of the crate
size: usize
Size in bytes
Trait Implementations§
source§impl Clone for ArtifactResponse
impl Clone for ArtifactResponse
source§fn clone(&self) -> ArtifactResponse
fn clone(&self) -> ArtifactResponse
Returns a copy 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 ArtifactResponse
impl Debug for ArtifactResponse
source§impl<'de> Deserialize<'de> for ArtifactResponse
impl<'de> Deserialize<'de> for ArtifactResponse
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 RefUnwindSafe for ArtifactResponse
impl Send for ArtifactResponse
impl Sync for ArtifactResponse
impl Unpin for ArtifactResponse
impl UnwindSafe for ArtifactResponse
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