pub struct BlobEntry {
pub architecture: String,
pub format: String,
pub hash: String,
pub size: usize,
pub linking: Option<LinkingInfo>,
pub security: Option<SecurityInfo>,
pub build_info: Option<BuildInfo>,
}Expand description
Binary blob entry
Fields§
§architecture: String§format: String§hash: String§size: usize§linking: Option<LinkingInfo>§security: Option<SecurityInfo>§build_info: Option<BuildInfo>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BlobEntry
impl<'de> Deserialize<'de> for BlobEntry
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 BlobEntry
impl RefUnwindSafe for BlobEntry
impl Send for BlobEntry
impl Sync for BlobEntry
impl Unpin for BlobEntry
impl UnwindSafe for BlobEntry
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