pub struct GetPluginResponseReleasesItem {
pub assets: Map<String, Value>,
pub created_at: f64,
pub id: String,
pub integrity: Option<GetPluginResponseReleasesItemIntegrity>,
pub min_runtime_version: Option<String>,
pub plugin_id: String,
pub version: String,
}Expand description
GetPluginResponseReleasesItem
JSON schema
{
"type": "object",
"required": [
"assets",
"createdAt",
"id",
"integrity",
"minRuntimeVersion",
"pluginId",
"version"
],
"properties": {
"assets": {
"type": "object"
},
"createdAt": {
"type": "number"
},
"id": {
"type": "string"
},
"integrity": {
"type": [
"object",
"null"
],
"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"
}
}
},
"minRuntimeVersion": {
"type": [
"string",
"null"
]
},
"pluginId": {
"type": "string"
},
"version": {
"type": "string"
}
}
}Fields§
§assets: Map<String, Value>§created_at: f64§id: String§integrity: Option<GetPluginResponseReleasesItemIntegrity>§min_runtime_version: Option<String>§plugin_id: String§version: StringImplementations§
Trait Implementations§
Source§impl Clone for GetPluginResponseReleasesItem
impl Clone for GetPluginResponseReleasesItem
Source§fn clone(&self) -> GetPluginResponseReleasesItem
fn clone(&self) -> GetPluginResponseReleasesItem
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 GetPluginResponseReleasesItem
impl<'de> Deserialize<'de> for GetPluginResponseReleasesItem
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<&GetPluginResponseReleasesItem> for GetPluginResponseReleasesItem
impl From<&GetPluginResponseReleasesItem> for GetPluginResponseReleasesItem
Source§fn from(value: &GetPluginResponseReleasesItem) -> Self
fn from(value: &GetPluginResponseReleasesItem) -> Self
Converts to this type from the input type.
Source§impl From<GetPluginResponseReleasesItem> for GetPluginResponseReleasesItem
impl From<GetPluginResponseReleasesItem> for GetPluginResponseReleasesItem
Source§fn from(value: GetPluginResponseReleasesItem) -> Self
fn from(value: GetPluginResponseReleasesItem) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetPluginResponseReleasesItem> for GetPluginResponseReleasesItem
impl TryFrom<GetPluginResponseReleasesItem> for GetPluginResponseReleasesItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: GetPluginResponseReleasesItem,
) -> Result<Self, ConversionError>
fn try_from( value: GetPluginResponseReleasesItem, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetPluginResponseReleasesItem
impl RefUnwindSafe for GetPluginResponseReleasesItem
impl Send for GetPluginResponseReleasesItem
impl Sync for GetPluginResponseReleasesItem
impl Unpin for GetPluginResponseReleasesItem
impl UnsafeUnpin for GetPluginResponseReleasesItem
impl UnwindSafe for GetPluginResponseReleasesItem
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