pub struct GetReleaseIntegrityResponseVariant0AssetsItem {
pub attestation_bundle: Value,
pub name: String,
pub sha256: String,
pub size: f64,
}Expand description
GetReleaseIntegrityResponseVariant0AssetsItem
JSON schema
{
"type": "object",
"required": [
"attestation_bundle",
"name",
"sha256",
"size"
],
"properties": {
"attestation_bundle": {},
"name": {
"type": "string"
},
"sha256": {
"type": "string"
},
"size": {
"type": "number"
}
}
}Fields§
§attestation_bundle: Value§name: String§sha256: String§size: f64Implementations§
Trait Implementations§
Source§impl Clone for GetReleaseIntegrityResponseVariant0AssetsItem
impl Clone for GetReleaseIntegrityResponseVariant0AssetsItem
Source§fn clone(&self) -> GetReleaseIntegrityResponseVariant0AssetsItem
fn clone(&self) -> GetReleaseIntegrityResponseVariant0AssetsItem
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<'de> Deserialize<'de> for GetReleaseIntegrityResponseVariant0AssetsItem
impl<'de> Deserialize<'de> for GetReleaseIntegrityResponseVariant0AssetsItem
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 From<&GetReleaseIntegrityResponseVariant0AssetsItem> for GetReleaseIntegrityResponseVariant0AssetsItem
impl From<&GetReleaseIntegrityResponseVariant0AssetsItem> for GetReleaseIntegrityResponseVariant0AssetsItem
Source§fn from(value: &GetReleaseIntegrityResponseVariant0AssetsItem) -> Self
fn from(value: &GetReleaseIntegrityResponseVariant0AssetsItem) -> Self
Converts to this type from the input type.
Source§impl From<GetReleaseIntegrityResponseVariant0AssetsItem> for GetReleaseIntegrityResponseVariant0AssetsItem
impl From<GetReleaseIntegrityResponseVariant0AssetsItem> for GetReleaseIntegrityResponseVariant0AssetsItem
Source§fn from(value: GetReleaseIntegrityResponseVariant0AssetsItem) -> Self
fn from(value: GetReleaseIntegrityResponseVariant0AssetsItem) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetReleaseIntegrityResponseVariant0AssetsItem> for GetReleaseIntegrityResponseVariant0AssetsItem
impl TryFrom<GetReleaseIntegrityResponseVariant0AssetsItem> for GetReleaseIntegrityResponseVariant0AssetsItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: GetReleaseIntegrityResponseVariant0AssetsItem,
) -> Result<Self, ConversionError>
fn try_from( value: GetReleaseIntegrityResponseVariant0AssetsItem, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetReleaseIntegrityResponseVariant0AssetsItem
impl RefUnwindSafe for GetReleaseIntegrityResponseVariant0AssetsItem
impl Send for GetReleaseIntegrityResponseVariant0AssetsItem
impl Sync for GetReleaseIntegrityResponseVariant0AssetsItem
impl Unpin for GetReleaseIntegrityResponseVariant0AssetsItem
impl UnsafeUnpin for GetReleaseIntegrityResponseVariant0AssetsItem
impl UnwindSafe for GetReleaseIntegrityResponseVariant0AssetsItem
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