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