pub struct ReleaseSetEntry {
pub role: String,
pub template_id: String,
pub artifact_relative_path: String,
pub payload_size_bytes: u64,
pub payload_sha256_hex: String,
pub chunk_size_bytes: u64,
pub chunk_sha256_hex: Vec<String>,
}Expand description
ReleaseSetEntry
Fields§
§role: String§template_id: String§artifact_relative_path: String§payload_size_bytes: u64§payload_sha256_hex: String§chunk_size_bytes: u64§chunk_sha256_hex: Vec<String>Trait Implementations§
Source§impl Clone for ReleaseSetEntry
impl Clone for ReleaseSetEntry
Source§fn clone(&self) -> ReleaseSetEntry
fn clone(&self) -> ReleaseSetEntry
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 ReleaseSetEntry
impl Debug for ReleaseSetEntry
Source§impl<'de> Deserialize<'de> for ReleaseSetEntry
impl<'de> Deserialize<'de> for ReleaseSetEntry
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
Source§impl PartialEq for ReleaseSetEntry
impl PartialEq for ReleaseSetEntry
Source§impl Serialize for ReleaseSetEntry
impl Serialize for ReleaseSetEntry
impl Eq for ReleaseSetEntry
impl StructuralPartialEq for ReleaseSetEntry
Auto Trait Implementations§
impl Freeze for ReleaseSetEntry
impl RefUnwindSafe for ReleaseSetEntry
impl Send for ReleaseSetEntry
impl Sync for ReleaseSetEntry
impl Unpin for ReleaseSetEntry
impl UnsafeUnpin for ReleaseSetEntry
impl UnwindSafe for ReleaseSetEntry
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